C# 多線程編程 – 使用Thread類建立線程

來源:互聯網
上載者:User

使用Thread類可以建立和控制線程。使用Thread類需要引入系統的System.Threading命名空間。

下面簡單樣本

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ThreadDemo{    class Program    {        static void ThreadMain()        {            Console.WriteLine("Running in the thread {0}, id: {1}",Thread.CurrentThread.Name, Thread.CurrentThread.ManagedThreadId);        }        static void Main(string[] args)        {            Thread t1 = new Thread(ThreadMain);            t1.Name = "MyThread";            t1.Start();            Console.WriteLine("This is the Main thread");            Console.ReadKey();                    }    }}

這裡不能保證哪個結果顯輸出,線程由作業系統調度,每次哪個線程在前面是不同的。

 

使用Thread類建立的線程預設的是前台線程,線程池中的線程總是後台線程。

  • 前台線程
  • 後台線程

前台線程在Main方法結束後,還會執行,一直到所有前台線程都完成任務了,程式才會結束。

後台線程在Main方法結束的時候,也會隨之一起結束。

 

後台線程非常適合完成背景工作。例如關閉WORD應用程式,拼字檢查繼續運行其進程就沒有意義。這樣可以將這個進程設定為後台進程。

通過設定線程的IsBackground屬性可以設定是否為後台進程。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ForegroundThread{    class Program    {        static void Main(string[] args)        {            Thread t1 = new Thread(ThreadMain);            t1.Name = "MyNewThread1";            t1.IsBackground = true;            t1.Start();            Console.WriteLine("Main Thread ending now...");        }        static void ThreadMain()        {            Console.WriteLine("Thread {0} started", Thread.CurrentThread.Name);            Thread.Sleep(3000);            Console.WriteLine("Thread {0} completed", Thread.CurrentThread.Name);        }    }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.