標題:
執行緒 (二)
[打印本頁]
作者:
tonyh
時間:
2017-10-27 20:16
標題:
執行緒 (二)
本帖最後由 tonyh 於 2019-11-23 13:43 編輯
以主類別繼承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();
}
}
複製代碼
作者:
李知易
時間:
2017-10-27 21:23
public class Ch123 extends Thread {
public void run()
{
System.out.println("給你5秒鐘走路!!聽到沒有!!");
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) {
Ch123 app=new 123);
app.start();
}
}
複製代碼
作者:
洪振庭
時間:
2017-10-28 20:33
public class Ch123 extends Thread{
Ch123(){
start();
}
public void run(){for(int i=5;i>=1;i--){
System.out.println(i+"seconds");
try{
Thread.sleep(1000);
}catch(InterruptedException e){}
}
System.out.println("Time's up!");
System.out.println("Thread's name:"+Thread.currentThread().getName());
}
public static void main(String[] args){
Ch123 jock=new Ch123();
jock.start();
}
}
複製代碼
作者:
黃璽安
時間:
2017-11-3 19:42
public class Ch122 extends Thread {
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();
}
}
複製代碼
作者:
曾挺桂
時間:
2017-11-3 20:33
public class Ch122 extends Thread {
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();
}
}
複製代碼
作者:
陳思惟
時間:
2017-11-4 10:06
public class Ch121 {
public static void main(String[] args) {
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());
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2