c#使用多執行緒的幾種方式示例詳解
(1)不需要傳遞引數,也不需要返回引數
ThreadStart是一個委託,這個委託的定義為void ThreadStart(),沒有引數與返回值。
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 30; i++)
{
ThreadStart threadStart = new ThreadStart(Calculate);
Thread thread = new Thread(threadStart);
thread.Start();
}
Thread.Sleep(2000);
Console.Read();
}
public static void Calculate()
{
DateTime time = DateTime.Now;//得到當前時間
Random ra = new Random();//隨機數物件
Thread.Sleep(ra.Next(10,100));//隨機休眠一段時間
Console.WriteLine(time.Minute + ":" + time.Millisecond);
}
}
(2)需要傳遞單個引數
ParameterThreadStart委託定義為void ParameterizedThreadStart(object state),有一個引數但是沒有返回值。
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 30; i++)
{
ParameterizedThreadStart tStart = new ParameterizedThreadStart(Calculate);
Thread thread = new Thread(tStart);
thread.Start(i*10+10);//傳遞引數
}
Thread.Sleep(2000);
Console.Read();
}
public static void Calculate(object arg)
{
Random ra = new Random();//隨機數物件
Thread.Sleep(ra.Next(10, 100));//隨機休眠一段時間
Console.WriteLine(arg);
}
}
(3)使用專門的執行緒類(常用)
使用執行緒類可以有多個引數與多個返回值,十分靈活!
複製程式碼程式碼如下:class Program
{
static void Main(string[] args)
{
MyThread mt = new MyThread(100);
ThreadStart threadStart = new ThreadStart(mt.Calculate);
Thread thread = new Thread(threadStart);
thread.Start();
//等待執行緒結束
while (thread.ThreadState != ThreadState.Stopped)
{
Thread.Sleep(10);
}
Console.WriteLine(mt.Result);//列印返回值
Console.Read();
}
}
public class MyThread//執行緒類
{
public int Parame { set; get; }//引數
public int Result { set; get; }//返回值
//建構函式
public MyThread(int parame)
{
this.Parame = parame;
}
//執行緒執行方法
public void Calculate()
{
Random ra = new Random();//隨機數物件
Thread.Sleep(ra.Next(10, 100));//隨機休眠一段時間
Console.WriteLine(this.Parame);
this.Result = this.Parame * ra.Next(10, 100);
}
}
(4)使用匿名方法(常用)
使用匿名方法啟動執行緒可以有多個引數和返回值,而且使用非常方便!
複製程式碼程式碼如下:class Program
{
static void Main(string[] args)
{
int Parame = 100;//當做引數
int Result = 0;//當做返回值
//匿名方法
ThreadStart threadStart = new ThreadStart(delegate()
{
Random ra = new Random();//隨機數物件
Thread.Sleep(ra.Next(10, 100));//隨機休眠一段時間
Console.WriteLine(Parame);//輸出引數
Result = Parame * ra.Next(10, 100);//計算返回值
});
Thread thread = new Thread(threadStart);
thread.Start();//多執行緒啟動匿名方法
//等待執行緒結束
while (thread.ThreadState != ThreadState.Stopped)
{
Thread.Sleep(10);
}
Console.WriteLine(Result);//列印返回值
Console.Read();
}
}
(5)使用委託開啟多執行緒(多執行緒深入)
1、用委託(Delegate)的BeginInvoke和EndInvoke方法操作執行緒
BeginInvoke方法可以使用執行緒非同步地執行委託所指向的方法。然後通過EndInvoke方法獲得方法的返回值(EndInvoke方法的返回值就是被呼叫方法的返回值),或是確定方法已經被成功呼叫。
class Program
{
private delegate int NewTaskDelegate(int ms);
private static int newTask(int ms)
{
Console.WriteLine("任務開始");
Thread.Sleep(ms);
Random random = new Random();
int n = random.Next(10000);
Console.WriteLine("任務完成");
return n;
}
static void Main(string[] args)
{
NewTaskDelegate task = newTask;
IAsyncResult asyncResult = task.BeginInvoke(2000, null, null);
//EndInvoke方法將被阻塞2秒
int result = task.EndInvoke(asyncResult);
Console.WriteLine(result);
Console.Read();
}
}
2、使用IAsyncResult.IsCompleted屬性來判斷非同步呼叫是否完成
複製程式碼程式碼如下:class Program
{
private delegate int NewTaskDelegate(int ms);
private static int newTask(int ms)
{
Console.WriteLine("任務開始");
Thread.Sleep(ms);
Random random = new Random();
int n = random.Next(10000);
Console.WriteLine("任務完成");
return n;
}
static void Main(string[] args)
{
NewTaskDelegate task = newTask;
IAsyncResult asyncResult = task.BeginInvoke(2000, null, null);
//等待非同步執行完成
while (!asyncResult.IsCompleted)
{
Console.Write("*");
Thread.Sleep(100);
}
// 由於非同步呼叫已經完成,因此, EndInvoke會立刻返回結果
int result = task.EndInvoke(asyncResult);
Console.WriteLine(result);
Console.Read();
}
}
3、使用WaitOne方法等待非同步方法執行完成
WaitOne的第一個引數表示要等待的毫秒數,在指定時間之內,WaitOne方法將一直等待,直到非同步呼叫完成,併發出通知,WaitOne方法才返回true。當等待指定時間之後,非同步呼叫仍未完成,WaitOne方法返回false,如果指定時間為0,表示不等待,如果為-1,表示永遠等待,直到非同步呼叫完成。
複製程式碼程式碼如下:class Program
{
private delegate int NewTaskDelegate(int ms);
private static int newTask(int ms)
{
Console.WriteLine("任務開始");
Thread.Sleep(ms);
Random random = new Random();
int n = random.Next(10000);
Console.WriteLine("任務完成");
return n;
}
static void Main(string[] args)
{
NewTaskDelegate task = newTask;
IAsyncResult asyncResult = task.BeginInvoke(2000, null, null);
//等待非同步執行完成
while (!asyncResult.AsyncWaitHandle.WaitOne(100, false))
{
Console.Write("*");
}
int result = task.EndInvoke(asyncResult);
Console.WriteLine(result);
Console.Read();
}
}
4、使用回撥方式返回結果
要注意的是“my.BeginInvoke(3,300, MethodCompleted, my)”,BeginInvoke方法的引數傳遞方式:
前面一部分(3,300)是其委託本身的引數。
倒數第二個引數(MethodCompleted)是回撥方法委託型別,他是回撥方法的委託,此委託沒有返回值,有一個IAsyncResult型別的引數,當method方法執行完後,系統會自動呼叫MethodCompleted方法。
最後一個引數(my)需要向MethodCompleted方法中傳遞一些值,一般可以傳遞被呼叫方法的委託,這個值可以使用IAsyncResult.AsyncState屬性獲得。
複製程式碼程式碼如下:class Program
{
private delegate int MyMethod(int second, int millisecond);
//執行緒執行方法
private static int method(int second, int millisecond)
{
Console.WriteLine("執行緒休眠" + (second * 1000 + millisecond) + "毫秒");
Thread.Sleep(second * 1000 + millisecond);
Random random = new Random();
return random.Next(10000);
}
//回撥方法
private static void MethodCompleted(IAsyncResult asyncResult)
{
if (asyncResult == null || asyncResult.AsyncState == null)
{
Console.WriteLine("回撥失敗!!!");
return;
}
int result = (asyncResult.AsyncState as MyMethod).EndInvoke(asyncResult);
Console.WriteLine("任務完成,結果:" + result);
}
static void Main(string[] args)
{
MyMethod my = method;
IAsyncResult asyncResult = my.BeginInvoke(3,300, MethodCompleted, my);
Console.WriteLine("任務開始");
Console.Read();
}
}
5、其他元件的BeginXXX和EndXXX方法
在其他的.net元件中也有類似BeginInvoke和EndInvoke的方法,如System.Net.HttpWebRequest類的BeginGetResponse和EndGetResponse方法。其使用方法類似於委託型別的BeginInvoke和EndInvoke方法,例如:
複製程式碼程式碼如下:class Program
{
//回撥函式
private static void requestCompleted(IAsyncResult asyncResult)
{
if (asyncResult == null || asyncResult.AsyncState==null)
{
Console.WriteLine("回撥失敗");
return;
}
HttpWebRequest hwr = asyncResult.AsyncState as HttpWebRequest;
HttpWebResponse response = (HttpWebResponse)hwr.EndGetResponse(asyncResult);
StreamReader sr = new StreamReader(response.GetResponseStream());
string str = sr.ReadToEnd();
Console.WriteLine("返回流長度:"+str.Length);
}
static void Main(string[] args)
{
HttpWebRequest request =
(HttpWebRequest)WebRequest.Create("http://www.baidu.com");
//非同步請求
IAsyncResult asyncResult = request.BeginGetResponse(requestCompleted, request);
Console.WriteLine("任務開始");
Console.Read();
}
}