日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問(wèn)題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷(xiāo)解決方案
簡(jiǎn)單易懂的C#.NET多線程應(yīng)用

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

即使你沒(méi)有編寫(xiě)c#.net多線程應(yīng)用程序的經(jīng)驗(yàn),也可能聽(tīng)說(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類(lèi)中有一個(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類(lèi)的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í)行,如果線程沒(méi)掛起,也不會(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)生的輸出類(lèi)似如下內(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ù)的使用方法

分享文章:簡(jiǎn)單易懂的C#.NET多線程應(yīng)用
本文地址:http://www.dlmjj.cn/article/djogodc.html