您好,登錄后才能下訂單哦!
常用其他方法
isAlive() 判斷線程是否還活著,即是否終止
setName() 給線程起名,代理角色
getName() 獲取線程名字
public class n {
public static void main(String[]args) throws InterruptedException
{
System.out.println(Thread.currentThread().isAlive());
//設置名字,真實角色(面向對象方式設置)和代理角色(線程的默認名字0到10)
test t=new test("ha");
Thread tt=new Thread(t);
tt.setName("ff"); //設置的是代理角色名稱
tt.start();
Thread.sleep(1000);
System.out.println(tt.isAlive());
}
}
class test implements Runnable{
private String name;
public test(String name)
{
this.name=name;
}
public void run()
{
System.out.println(Thread.currentThread().getName()+"-->"+name);
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。