- JAVA中終止線程的方法有哪些 推薦度:
- 相關(guān)推薦
JAVA中終止線程的方法
在Java的多線程編程中,java.lang.Thread類(lèi)型包含了一些列的方法start(), stop(), stop(Throwable) and suspend(), destroy() and resume()。通過(guò)這些方法,我們可以對(duì)線程進(jìn)行方便的操作,但是這些方法中,只有start()方法得到了保留。本文是百分網(wǎng)小編搜索整理的關(guān)于JAVA中終止線程的方法,供參考復(fù)習(xí),希望對(duì)大家有所幫助!想了解更多相關(guān)信息請(qǐng)持續(xù)關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!
如果真的需要終止一個(gè)線程,可以使用以下幾種方法:
1、讓線程的run()方法執(zhí)行完,線程自然結(jié)束。(這種方法最好)
2、通過(guò)輪詢(xún)和共享標(biāo)志位的方法來(lái)結(jié)束線程,例如while(flag){},flag的初始值設(shè)為真,當(dāng)需要結(jié)束時(shí),將flag的值設(shè)為false。(這種方法也不很好,因?yàn)槿绻鹷hile(flag){}方法阻塞了,則flag會(huì)失效)
代碼如下:
public class SomeThread implements Runnable {
private volatile boolean stop = false;
public void terminate() {
stop = ture;
}
public void run() {
while(stop) {
// ... some statements
}
}
}
如果線程因?yàn)閳?zhí)行sleep()或是wait()而進(jìn)入Not Runnable狀態(tài),假如是wait() 用標(biāo)志位就方法就不行了,
public final void wait(long timeout)
throws InterruptedException此方法導(dǎo)致當(dāng)前線程(稱(chēng)之為 T)將其自身放置在對(duì)象的等待集中,然后放棄此對(duì)象上的所有同步要求。即當(dāng)前線程變?yōu)榈却隣顟B(tài)
wait() 的標(biāo)準(zhǔn)使用方法
synchronized(obj){
while(<不滿(mǎn)足條件>){
obj.wait();
}
滿(mǎn)足條件的處理過(guò)程
}
而您想要停止它,您可以使用第三種即
3 使用interrupt(),而程式會(huì)丟出InterruptedException例外,因而使得執(zhí)行緒離開(kāi)run()方法,
例如:
代碼如下:
public class SomeThread {
public static void main(String[] args)
{
Thread thread=new Thread(new Runnable(){
public void run() {
while (!Thread.interrupted()) {
// 處理所要處理的工作
try {
System.out.println("go to sleep");
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
System.out.println("i am interrupted!");
}
});
thread.start();
thread.interrupt();
}
}
執(zhí)行結(jié)果為:
go to sleep
【JAVA中終止線程的方法】相關(guān)文章:
JAVA中終止線程的方法有哪些07-26
利用Java終止線程的方法10-11
Java線程同步的方法05-27
Java多線程通信方法09-03
java單線程多線程的實(shí)現(xiàn)與方法09-25
java中如何停止線程08-14
java線程池框架解析方法10-13
java中通用的線程池實(shí)例代碼08-27