標題:
執行緒 (二)
[打印本頁]
作者:
tonyh
時間:
2019-11-23 13:45
標題:
執行緒 (二)
以主類別繼承Thread類別,建立執行緒。
public class Ch122 extends Thread {
/*
Ch122()
{
start();
}
*/
public void run()
{
for(int i=5; i>=1; i--)
{
System.out.println(i+"秒");
try {
sleep(1000);
} catch (InterruptedException e) {}
}
System.out.println("時間到!");
System.out.println("執行緒名稱: "+Thread.currentThread().getName());
}
public static void main(String[] args) {
Ch122 app=new Ch122();
app.start();
//app.run();
}
}
複製代碼
作者:
蕭澧邦
時間:
2019-11-23 14:19
public class Ch122 extends Thread {
/*
Ch122()
{
start();
}
*/
public void run()
{
for(int i=5; i>=1; i--)
{
System.out.println(i+"秒");
try {
sleep(1000);
} catch (InterruptedException e) {}
}
System.out.println("時間到!");
System.out.println("執行緒名稱: "+Thread.currentThread().getName());
}
public static void main(String[] args) {
Ch122 app=new Ch122();
app.start();
//app.run();
}
}
複製代碼
作者:
蔡幸融
時間:
2019-11-23 14:22
public class Ch121 extends Thread
{
public void run()
{
for(int i=5; i>=1; i--)
{
System.out.println(i+"秒");
try
{
Thread.sleep(1000);
} catch (InterruptedException e) {}
}
System.out.println("時間到!");
System.out.println("執行緒名稱: "+Thread.currentThread().getName());
}
public static void main(String[] args)
{
Ch121 app=new Ch121();
app.start();
}
}
複製代碼
作者:
譚暐霖
時間:
2019-11-30 13:49
public class Ch600 extends Thread {
public void run()
{
for(int i=5; i>=1; i--)
{
System.out.println(i+"sec");
try {
sleep(1000);
} catch (InterruptedException e) {}
}
System.out.println("times up");
System.out.println("name: "+Thread.currentThread().getName());
}
public static void main(String[] args) {
Ch600 app=new Ch600();
app.start();
//app.run();
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2