在C#中,BeginInvoke
方法用于在異步線程上執(zhí)行委托。為了正確調(diào)用BeginInvoke
,請按照以下步驟操作:
MethodInvoker
委托:public delegate void MethodInvoker();
MyAsyncMethod
的方法:public void MyAsyncMethod()
{
Console.WriteLine("Hello from MyAsyncMethod!");
}
MethodInvoker myAsyncMethod = new MethodInvoker(MyAsyncMethod);
BeginInvoke
方法啟動(dòng)異步執(zhí)行。傳遞委托實(shí)例作為參數(shù):myAsyncMethod.BeginInvoke(null, null);
BeginInvoke
方法接受兩個(gè)可選參數(shù),分別是AsyncCallback
和Object
。AsyncCallback
是一個(gè)回調(diào)方法,當(dāng)異步操作完成時(shí),它將被調(diào)用。Object
是一個(gè)參數(shù)對象,可以傳遞給回調(diào)方法。在這個(gè)例子中,我們不需要回調(diào)方法和參數(shù)對象,所以傳遞null
。
完整的示例代碼如下:
using System;
using System.Threading;
class Program
{
public delegate void MethodInvoker();
public static void MyAsyncMethod()
{
Console.WriteLine("Hello from MyAsyncMethod!");
}
public static void Main(string[] args)
{
MethodInvoker myAsyncMethod = new MethodInvoker(MyAsyncMethod);
myAsyncMethod.BeginInvoke(null, null);
Console.WriteLine("Hello from Main!");
Console.ReadKey();
}
}
運(yùn)行此代碼時(shí),將看到以下輸出:
Hello from MyAsyncMethod!
Hello from Main!
這表明MyAsyncMethod
已成功在線程上異步執(zhí)行。