.net將關於多執行緒的功能定義在system.threading名字空間中。因此,要使用多執行緒,必須先宣告引用此名字空間(using system.threading;)。
即使你沒有編寫多執行緒應用程式的經驗,也可能聽說過「啟動執行緒」「殺死執行緒」這些詞,其實除了這兩個外,涉及多執行緒方面的還有諸如「暫停執行緒」「優先順序」「掛起執行緒」「恢復執行緒」等等。下面將乙個乙個的解釋。
a.啟動執行緒
顧名思義,「啟動執行緒」就是新建並啟動乙個執行緒的意思,如下**可實現:
thread thread1 = new thread(new threadstart( count));
其中的 count 是將要被新執行緒執行的函式。
b.殺死執行緒
「殺死執行緒」就是將一線程斬草除根,為了不白費力氣,在殺死乙個執行緒前最好先判斷它是否還活著(通過 isalive 屬性),然後就可以呼叫 abort 方法來殺死此執行緒。
c.暫停執行緒
它的意思就是讓乙個正在執行的執行緒休眠一段時間。如 thread.sleep(1000); 就是讓執行緒休眠1秒鐘。
d.優先順序
這個用不著解釋了。thread類中有乙個threadpriority屬性,它用來設定優先順序,但不能保證作業系統會接受該優先順序。乙個執行緒的優先順序可分為5種:normal, abovenormal, belownormal, highest, lowest。具體實現例子如下:
thread.priority = threadpriority.highest;
e.掛起執行緒
thread類的suspend方法用來掛起執行緒,知道呼叫resume,此執行緒才可以繼續執行。如果執行緒已經掛起,那就不會起作用。
if (thread.threadstate = threadstate.running)
f.恢復執行緒
用來恢復已經掛起的執行緒,以讓它繼續執行,如果執行緒沒掛起,也不會起作用。
if (thread.threadstate = threadstate.suspended)
下面將列出乙個例子,以說明簡單的執行緒處理功能。此例子來自於幫助文件。
using system;
using system.threading;
// ****** threading scenario: start a static method running
// on a second thread.
public class threadexample ", i);
// yield the rest of the time slice.
thread.sleep(0);
}
}
public static void main()
console.writeline("main thread: call join(), to wait until threadproc ends.");
t.join();
console.writeline("main thread: threadproc.join has returned. press enter to end program.");
console.readline();
}
}
此**產生的輸出類似如下內容:
main thread: start a second thread.
main thread: do some work.
threadproc: 0
main thread: do some work.
threadproc: 1
main thread: do some work.
threadproc: 2
main thread: do some work.
threadproc: 3
main thread: call join(), to wait until threadproc ends.
threadproc: 4
threadproc: 5
threadproc: 6
threadproc: 7
threadproc: 8
threadproc: 9
main thread: threadproc.join has returned. press enter to end program.
C 多執行緒問題
多執行緒問題,一直是我的乙個噩夢,老是搞不清楚怎麼回事,真是很慚愧呀,所以今天特地向各位的大大求教。如下 c include www.h include include include include include include pthread cond t cond pthread mutex...
多執行緒問題C
1.過去寫的微控制器裸跑的程式,其實也屬於多執行緒的,用智慧型電表中的韌體做個比方。void main void 迴圈中,所列包括3個 執行緒 處理,執行緒1在執行完之後執行執行緒2,執行緒2執行完進入執行緒3.後面依次,此類我覺得也可稱之 執行緒 由於不必存在同時處理的問題,因此不存在爭搶同一共享...
C 多執行緒問題
多執行緒問題,用法其實並不難,難的是在複雜的場景用不好,多執行緒的用法大家能知道幾個?thread?threadtool?下面我們詳細講一下多執行緒的歷程 net framework 1.0 thread 最初版本多執行緒thread,功能非常豐富也很強大,但是呢也很容易出錯,主要是多執行緒是從作業...