C#線程的使用


 

C#線程的使用簡單示例代碼如下:

using System;
using System.Threading;

class Program
{
static void Main(string[] args)
{
Thread.CurrentThread.Name = "主線程";
Thread thread1 = new Thread(new ThreadStart(Program.Output));
thread1.Name = "子線程1";
thread1.Priority = ThreadPriority.Lowest;
Thread thread2 = new Thread(new ThreadStart(Program.Output));
thread2.Name = "子線程2";
thread2.Priority = ThreadPriority.Highest;
thread1.Start();
thread2.Start();
}

static void Output()
{
for (int i = 0; i < 10; i++)
{
Console.WriteLine("線程:{0},i的值:{1}", Thread.CurrentThread.Name, i);
}
}
}

尊重作者,轉發請注明出處:http://www.cnblogs.com/minotmin
謝謝閱讀,有錯請指出,不甚感激。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM