執行緒常用的方法

2022-02-23 08:30:58 字數 474 閱讀 7106

public class myrunner3 extends thread  catch (interruptedexception e) 

} }}public class testthread3 catch (interruptedexception e)

for(int i = 0; i < 100; i++)

}}

public class myrunner4 extends thread 

} }}public class testthread4

}

執行緒的優先順序用數字表示,範圍從1到10,預設的是為5

優先順序設定高了之後,獲取cpu執行時間片要多一些,具體執行多少時間由作業系統決定

public class myrunner5 extends thread 	}}

public class testthread5

}

執行緒常用的方法

執行緒常用的方法 thread string name 初始化執行緒的名字 setname string name 設定執行緒物件名 getname 返回執行緒的名字 static sleep 那個執行緒執行了sleep的 那麼該執行緒就會睡眠指定毫秒數。currentthread 返回當前執行該方...

執行緒常用的方法

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 方...