[問題] 用thread印出log不如預期...
各位版友好,我寫了一個簡單的程式,利用2個分別印出5行log,
結果發現thread印出的log不如預期...請問是我寫錯了嗎?
Runnable runnable=new Runnable(
{
@Override
public void run(){
for(j=0;j<5;j++)
Log.i(tag,Thread.currentThread.getName());
}
}
for(i=0;i<2;i++)
{
Thread thread=new Thread(runnable);
thread.setName(根據i值設定名稱);
try{
thread.start();
thread.join();
}catch(InterruptedException e){}
結果一個thread只印出兩次名字,請問我有寫錯嗎?
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.137.192.46 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/java/M.1589162154.A.A5A.html
→
05/11 11:42,
4年前
, 1F
05/11 11:42, 1F
→
05/11 14:36,
4年前
, 2F
05/11 14:36, 2F
※ 編輯: Dong0129 (111.249.97.154 臺灣), 05/11/2020 21:16:42
推
05/12 10:51,
4年前
, 3F
05/12 10:51, 3F
→
05/12 11:04,
4年前
, 4F
05/12 11:04, 4F
→
05/12 11:06,
4年前
, 5F
05/12 11:06, 5F
原來如此,謝謝!
※ 編輯: Dong0129 (114.137.95.33 臺灣), 05/12/2020 17:25:08
java 近期熱門文章
PTT數位生活區 即時熱門文章