執行緒常用的方法

2021-09-24 14:15:04 字數 612 閱讀 1844

/*

執行緒常用的方法:

thread(string name)     初始化執行緒的名字

setname(string name) 設定執行緒物件名

getname() 返回執行緒的名字

static sleep() 那個執行緒執行了sleep的** ,那麼該執行緒就會睡眠指定毫秒數。

currentthread() 返回當前執行該方法的執行緒物件引用。

getpriority() 返回當前執行緒物件的優先順序 預設執行緒的優先順序是5

setpriority(int newpriority) 設定執行緒的優先順序 雖然設定了執行緒的優先順序,但是具體的實現取決於底層的作業系統的實現(最大的優先順序是10 ,最小的1 , 預設是5)。

*/

public class demo3 extends thread

@override

public void run()

}public static void main(string args) throws exception

}

執行緒常用的方法

public class myrunner3 extends thread catch interruptedexception e public class testthread3 catch interruptedexception e for int i 0 i 100 i public cl...

執行緒常用的方法

start run currentthread getname setname yield join sleep long millitime isalive getpriority class mythread extends thread catch interruptedexception e...

執行緒的常用方法

開發中用到的執行緒方法也是很常見的,其方法的區別理解清楚了,操作也就順手了。執行緒中的常用的方法有如下幾個,分別是sleep wait 和notify 和notifyall suspend 和resume yield join interrupt 下面我就以上方法做乙個簡單的介紹。首先是join 方...