程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#基礎學習 —— 異步編程篇 (一)(2)

C#基礎學習 —— 異步編程篇 (一)(2)

編輯:關於C語言
用一個 AsyncDemo 類作為異步方法的提供者,後面的程序都會調用它。內部很簡單,構造函數接收一個字符串作為 name ,Run 方法輸出 "My name is " + name ,而異步方法直接用委托的 BeginInvoke 和 EndInvoke 方法實現

public class AsyncDemo
  {
    // Use in asynchronous methods
    private delegate string runDelegate();
    private string m_Name;
    private runDelegate m_Delegate;
    public AsyncDemo(string name)
    {
      m_Name = name;
      m_Delegate = new runDelegate(Run);
    }
    /**//// <summary>
    /// Synchronous method
    /// </summary>
    /// <returns></returns>
    public string Run()
    {
      return "My name is " + m_Name;
    }
    /**//// <summary>
    /// Asynchronous begin method
    /// </summary>
    /// <param name="callBack"></param>
    /// <param name="stateObject"></param>
    /// <returns></returns>
    public IAsyncResult BeginRun(AsyncCallback callBack, Object stateObject)
    {
      try
      {
        return m_Delegate.BeginInvoke(callBack, stateObject);
      }
      catch(Exception e)
      {
        // Hide inside method invoking stack
        throw e;
      }
    }
    /**//// <summary>
    /// Asynchronous end method
    /// </summary>
    /// <param name="ar"></param>
    /// <returns></returns>
    public string EndRun(IAsyncResult ar)
    {
      if (ar == null)
        throw new NullReferenceException("Arggument ar can't be null");
      try
      {
        return m_Delegate.EndInvoke(ar);
      }
      catch (Exception e)
      {
        // Hide inside method invoking stack
        throw e;
      }
    }
  }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved