C#的ThreadStart 和 Thread
多線程,new Thread(t1);和new Thread(new ThreadStart(t1));有什麽區別
沒有區別。
前者,是c#的語法。也就是說是編譯器幫你改寫為第二種形式。
因此你要搞清楚,這是.net的特性還是c#的特性。這是c#得特性,如果有人以為第一種寫法“是.net的”那他就錯了。
.net中根本不支持 new Thread(t1); 這種代碼,這是c#編譯器支持的。類似的東西也有很多。所以說c#比較優雅,是指這個部分。
要分清楚“什麽是c#的,什麽是.net的”,你能更好地理解c#,也能更好地理解.net。
在C#中,線程入口是通過ThreadStart代理(delegate)來提供的,你可以把ThreadStart理解為一個函數指針,指向線程要執行的函數,當調用C#
Thread.Start()方法後,線程就開始執行ThreadStart所代表或者說指向的函數。
你要搞清楚ThreadStart是一個委托。雖然它叫Thread,但是它其實是一個普普通通的委托類型。
就好比
button.Click += button1_Click;
和
button1.Click += new EventHandler(button1_Click);
打開你的VS.net,新建一個控制臺應用程序(Console Application),編寫完全控制一個線程的代碼示例:
using System;
using System.Threading;
namespace ThreadTest
{
public class Alpha
{
public void Beta()
{
while (true)
{
Console.WriteLine("Alpha.Beta is running in its own thread.");
}
}
};
public class Simple
{
public static int Main()
{
Console.WriteLine("Thread Start/Stop/Join Sample");
Alpha oAlpha = new Alpha();
//這裏創建一個線程,使之執行Alpha類的Beta()方法
Thread oThread = new Thread(new ThreadStart(oAlpha.Beta));
oThread.Start();
while (!oThread.IsAlive)
Thread.Sleep(1);
oThread.Abort();
oThread.Join();
Console.WriteLine();
Console.WriteLine("Alpha.Beta has finished");
try
{
Console.WriteLine("Try to restart the Alpha.Beta thread");
oThread.Start();
}
catch (ThreadStateException)
{
Console.Write("ThreadStateException trying to restart Alpha.Beta. ");
Console.WriteLine("Expected since aborted threads cannot be restarted.");
Console.ReadLine();
}
return 0;
}
}
}
這段程序包含兩個類Alpha和Simple,在創建線程oThread時我們用指向Alpha.Beta()方法的初始化了 ThreadStart代理(delegate)對象,當我們創建的線程oThread調用C# Thread.Start()方法啟動時,實際上程序運行的是Alpha.Beta()方法:
- Alpha oAlpha = new Alpha();
- Thread oThread = new Thread(new ThreadStart(oAlpha.Beta));
- oThread.Start();
然後在Main()函數的while循環中,我們使用靜態方法Thread.Sleep()讓主線程停了1ms,這段時間CPU轉向執行線程 oThread。然後我們試圖調用Thread.Abort()方法終止線程oThread,註意後面的 oThread.Join(),Thread.Join()方法使主線程等待,直到oThread線程結束。你可以給Thread.Join()方法指定一個int型的參數作為等待的最長時間。之後,我們試圖用C# Thread.Start()方法重新啟動線程oThread,但是顯然Abort()方法帶來的後果是不可恢復的終止線程,所以最後程序會拋出 ThreadStateException異常。
C#的ThreadStart 和 Thread