Thread
現在
也就是讓run方法執行完畢
然而
通常
如:
publicvoid run() {while(true){
someWork();
if(finished){
break;
}
try {
Thread
} catch (InterruptedException e) {
/* TODO自動生成 catch 塊
*
*/
e
}
}
}
我們可以在while死循環內
有些執行伺服任務的線程
此時
如
publicvoid run() {
while(true){
try {
// getSendMessages 是BlockingQueue類
responseMessage = this
} catch (InterruptedException e
thrownew RuntimeException();
//或者break;
}
someWork();
}
一個外部的Thread 對象 指向這個線程
這條語句中產生一個InterruptedException異常
From:http://tw.wingwit.com/Article/program/Java/gj/201311/27772.html