start()
start():啟動當前執行緒:呼叫當前執行緒的run()。
run()
run():通常需要重寫thread類中的此方法,將建立的執行緒要執行的操作宣告在此方法中。
currentthread()
currentthread():靜態方法,返回執行當前**的執行緒。
getname()
getname():返回當前執行緒的名字。
setname()
setname():設定當前執行緒的名字。
yield()
yield():釋放當前cpu的執行權。
join()
stop():強制結束乙個執行緒。(以過時)
sleep(long millitime)
sleep(long millitime):強制阻塞執行緒millitime毫秒。
isalive()
isalive():判斷執行緒是否死亡。
Thread常用方法
override public void run public static void main string args override public void run catch interruptedexception e 原本輸出main,但是使用join方法使main執行緒無條件等待,所以...
Thread常用方法
方法用途 static thread currentthread 得到當前執行緒 getname 返回執行緒的名稱 setname string name 將執行緒的名稱設定為由name指定的名稱 start 呼叫run 方法啟動執行緒,開始執行緒的執行 run 存放執行緒體 thread.slee...
Thread的常用方法
一 測試thread中常用方法 1.start 啟動當前執行緒 呼叫當前執行緒的run 2.run 通常 需要重寫thread類中的此方法,將建立的執行緒要執行的操作宣告在此方法中 3.currenthread 靜態方法,返回執行當前 的執行緒 4.getname 獲取當前執行緒的名字 5.setn...