您好,登錄后才能下訂單哦!
終止線程的兩種方式:
線程正常執(zhí)行完畢
外部干涉加入標(biāo)識(在為真的情況下才執(zhí)行線程)
不要使用stop和destroy方法
public class hh implements Runnable {
//加入標(biāo)識,標(biāo)記線程體是否可以運(yùn)行
private boolean flag=true;
private String name;
public hh(String name)
{
this.name=name;
}
public void run()
{
int i=0;
//關(guān)聯(lián)標(biāo)識,true-->運(yùn)行,false-->停止
while(flag)
{
System.out.println(name+"-->"+i++);
}
}
//對外提供方法改變標(biāo)識
public void stopFlag()
{
this.flag=false;
}
public static void main(String[]args)
{
hh h=new hh("me");
new Thread(h).start();
for(int i=0;i<=10;i++)
{
if(i==9)
{
h.stopFlag();//線程的終止
System.out.println("over");
}
System.out.println("it"+i);
}
}
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。