自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

簡(jiǎn)單易懂的C#.NET多線程應(yīng)用

開發(fā) 后端
本文從啟動(dòng)線程、殺死線程、暫停線程、優(yōu)先級(jí)、掛起線程、恢復(fù)線程等方面介紹了C#.NET多線程應(yīng)用。希望對(duì)大家有所幫助。

 .NET將關(guān)于多線程的功能定義在System.Threading名字空間中。因此,要實(shí)現(xiàn)C#.NET多線程應(yīng)用,必須先聲明引用此名字空間(using System.Threading;)。

即使你沒有編寫c#.net多線程應(yīng)用程序的經(jīng)驗(yàn),也可能聽說(shuō)過(guò)“啟動(dòng)線程”“殺死線程”這些詞,其實(shí)除了這兩個(gè)外,涉及多線程方面的還有諸如“暫停線程”“優(yōu)先級(jí)”“掛起線程”“恢復(fù)線程”等等。下面將一個(gè)一個(gè)的解釋。

a.啟動(dòng)線程

顧名思義,“啟動(dòng)線程”就是新建并啟動(dòng)一個(gè)線程的意思,如下代碼可實(shí)現(xiàn):   

  1. Thread thread1 = new Thread(new ThreadStart( Count));  

其中的 Count 是將要被新線程執(zhí)行的函數(shù)。

b.殺死線程

“殺死線程”就是將一線程斬草除根,為了不白費(fèi)力氣,在殺死一個(gè)線程前***先判斷它是否還活著(通過(guò) IsAlive 屬性),然后就可以調(diào)用 Abort 方法來(lái)殺死此線程。

c.暫停線程

它的意思就是讓一個(gè)正在運(yùn)行的線程休眠一段時(shí)間。如 thread.Sleep(1000); 就是讓線程休眠1秒鐘。

d.優(yōu)先級(jí)

這個(gè)用不著解釋了。Thread類中有一個(gè)ThreadPriority屬性,它用來(lái)設(shè)置優(yōu)先級(jí),但不能保證操作系統(tǒng)會(huì)接受該優(yōu)先級(jí)。一個(gè)線程的優(yōu)先級(jí)可分為5種:Normal, AboveNormal, BelowNormal, Highest, Lowest。具體實(shí)現(xiàn)例子如下:  

  1. thread.Priority = ThreadPriority.Highest; 

e.掛起線程

Thread類的Suspend方法用來(lái)掛起線程,知道調(diào)用Resume,此線程才可以繼續(xù)執(zhí)行。如果線程已經(jīng)掛起,那就不會(huì)起作用。

  1. if (thread.ThreadState = ThreadState.Running)  
  2. {  
  3.      thread.Suspend();  

f.恢復(fù)線程

用來(lái)恢復(fù)已經(jīng)掛起的線程,以讓它繼續(xù)執(zhí)行,如果線程沒掛起,也不會(huì)起作用。

  1. if (thread.ThreadState = ThreadState.Suspended)  
  2. {  
  3.      thread.Resume();  

下面將列出一個(gè)例子,以說(shuō)明簡(jiǎn)單的線程處理功能。此例子來(lái)自于幫助文檔。

  1. using System;  
  2. using System.Threading;  
  3.  
  4. // Simple threading scenario:  Start a static method running  
  5. // on a second thread.  
  6. public class ThreadExample {  
  7.     // The ThreadProc method is called when the thread starts.  
  8.     // It loops ten times, writing to the console and yielding  
  9.     // the rest of its time slice each time, and then ends.  
  10.     public static void ThreadProc() {  
  11.         for (int i = 0; i <  10; i++) {  
  12.             Console.WriteLine("ThreadProc: {0}", i);  
  13.             // Yield the rest of the time slice.  
  14.             Thread.Sleep(0);  
  15.         }  
  16.     }  
  17.  
  18.     public static void Main() {  
  19.         Console.WriteLine("Main thread: Start a second thread.");  
  20.         // The constructor for the Thread class requires a ThreadStart  
  21.         // delegate that represents the method to be executed on the  
  22.         // thread.  C# simplifies the creation of this delegate.  
  23.         Thread t = new Thread(new ThreadStart(ThreadProc));  
  24.         // Start ThreadProc.  On a uniprocessor, the thread does not get  
  25.         // any processor time until the main thread yields.  Uncomment  
  26.         // the Thread.Sleep that follows t.Start() to see the difference.  
  27.         t.Start();  
  28.         //Thread.Sleep(0);  
  29.  
  30.         for (int i = 0; i <  4; i++) {  
  31.             Console.WriteLine("Main thread: Do some work.");  
  32.             Thread.Sleep(0);  
  33.         }  
  34.  
  35.         Console.WriteLine("Main thread: Call Join(), to wait until ThreadProc ends.");  
  36.         t.Join();  
  37.         Console.WriteLine("Main thread: ThreadProc.Join has returned.  Press Enter to end program.");  
  38.         Console.ReadLine();  
  39.     }  

此代碼產(chǎn)生的輸出類似如下內(nèi)容:

  1. Main thread: Start a second thread.  
  2. Main thread: Do some work.  
  3. ThreadProc: 0  
  4. Main thread: Do some work.  
  5. ThreadProc: 1  
  6. Main thread: Do some work.  
  7. ThreadProc: 2  
  8. Main thread: Do some work.  
  9. ThreadProc: 3  
  10. Main thread: Call Join(), to wait until ThreadProc ends.  
  11. ThreadProc: 4  
  12. ThreadProc: 5  
  13. ThreadProc: 6  
  14. ThreadProc: 7  
  15. ThreadProc: 8  
  16. ThreadProc: 9  
  17. Main thread: ThreadProc.Join has returned.  Press Enter to end program. 

C#.NET多線程應(yīng)用的相關(guān)知識(shí)就介紹到這里,是不是非常簡(jiǎn)單呢?

【編輯推薦】

  1. 淺析C#啟動(dòng)停止SQL數(shù)據(jù)庫(kù)服務(wù)之方法
  2. 總結(jié)C#獲取當(dāng)前路徑的7種方法
  3. 淺析C# treeview控件的使用方法
  4. C#多態(tài)性的概念及其應(yīng)用
  5. 介紹C#構(gòu)造函數(shù)的使用方法
責(zé)任編輯:book05 來(lái)源: 新浪博客
相關(guān)推薦

2009-08-24 16:30:43

C#.NET綁定Off

2009-09-11 11:30:53

Net60C#.NET

2011-06-17 15:55:19

ArrayListC#

2009-08-25 13:53:20

C#.NET rege

2009-08-26 14:23:14

C#.Net Fram

2009-08-13 10:35:55

C#.NET操作XML

2009-08-24 16:19:54

C#.NET綁定Off

2009-08-26 10:09:22

C#編碼規(guī)范

2009-08-19 15:44:09

ObjectARX .

2024-10-14 16:25:59

C#線程鎖代碼

2009-04-02 15:21:43

c#IDisposeFinalize

2009-10-09 17:01:32

VB.NET多線程

2009-09-01 17:15:42

C#多線程應(yīng)用

2009-10-20 10:23:08

VB.NET多線程編程

2009-08-19 16:19:33

Employee對(duì)象

2009-09-01 16:14:05

ArrayList與A

2021-05-27 08:47:16

C語(yǔ)言C語(yǔ)言程序開發(fā)

2009-08-19 16:05:46

AutoCADEditor類

2009-10-27 12:20:06

VB.NET多線程應(yīng)用

2009-08-28 09:29:02

點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)