標題:
執行緒 (三)
[打印本頁]
作者:
tonyh
時間:
2017-11-3 19:43
標題:
執行緒 (三)
本帖最後由 tonyh 於 2019-11-23 14:20 編輯
自訂類別,繼承Thread類別,建立執行緒。
public class Ch123 {
private MyThread th;
Ch123()
{
th=new MyThread();
th.start();
}
public static void main(String[] args) {
new Ch123();
}
}
class MyThread 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 class Ch125{
MyThread th;
Ch125()
{
th=new MyThread();
th.start();
}
public static void main(String[] args) {
new Ch125();
}
class MyThread 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(e);
}
}
System.out.println("時間到!");
System.out.println("執行緒名稱:"+Thread.currentThread().getName());
}
}
}
複製代碼
作者:
黃璽安
時間:
2017-11-3 20:37
public class Ch100{
private MyThread th;
Ch100()
{
th=new MyThread();
th.start();
}
public static void main(String[] args){
new Ch100();
}
}
class MyThread 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());
}
}
複製代碼
作者:
洪振庭
時間:
2017-11-3 20:42
public class Ch123 {
private MyThread th;
Ch123()
{
th=new MyThread();
th.start();
}
public static void main(String[] args) {
new Ch123();
}
}
class MyThread 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());
}
}
複製代碼
作者:
陳思惟
時間:
2017-11-4 10:07
public class Ch100{
private MyThread th;
Ch100()
{
th=new MyThread();
th.start();
}
public static void main(String[] args){
new Ch100();
}
}
class MyThread 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());
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2