Board logo

標題: 執行緒 (三) [打印本頁]

作者: tonyh    時間: 2019-11-23 14:48     標題: 執行緒 (三)

自訂類別,繼承Thread類別,建立執行緒。

  1. public class Ch123 {
  2.         private MyThread th;
  3.         
  4.         Ch123()
  5.         {
  6.                 th=new MyThread();
  7.                 th.start();
  8.         }
  9.         
  10.         public static void main(String[] args) {
  11.                 new Ch123();        
  12.         }
  13. }

  14. class MyThread extends Thread
  15. {
  16.         public void run()
  17.         {
  18.                 for(int i=5; i>=1; i--)
  19.                 {
  20.                         System.out.println(i+"秒");
  21.                         try {
  22.                                 sleep(1000);
  23.                         } catch (InterruptedException e) {}
  24.                 }
  25.                 System.out.println("時間到!");
  26.                 System.out.println("執行緒名稱: "+Thread.currentThread().getName());
  27.         }
  28. }
複製代碼
  1. public class Ch125{
  2.         MyThread th;
  3.        
  4.         Ch125()
  5.         {
  6.                 th=new MyThread();
  7.                 th.start();
  8.         }
  9.         public static void main(String[] args) {
  10.              new Ch125();       
  11.         }
  12.        
  13.         class MyThread extends Thread
  14.         {
  15.                 public void run()
  16.                 {
  17.                         for(int i=5; i>=1; i--)
  18.                         {
  19.                                 System.out.println(i+"秒");
  20.                                 try {
  21.                                         sleep(1000);
  22.                                 } catch (InterruptedException e) {
  23.                         System.out.println(e);
  24.                                 }
  25.                         }
  26.                         System.out.println("時間到!");
  27.                         System.out.println("執行緒名稱:"+Thread.currentThread().getName());       
  28.                 }
  29.     }
  30. }
複製代碼

作者: 蕭澧邦    時間: 2019-11-23 15:05

  1. public class Ch123 {
  2.         private MyThread th;
  3.         
  4.         Ch123()
  5.         {
  6.                 th=new MyThread();
  7.                 th.start();
  8.         }
  9.         
  10.         public static void main(String[] args) {
  11.                 new Ch123();        
  12.         }
  13. }

  14. class MyThread extends Thread
  15. {
  16.         public void run()
  17.         {
  18.                 for(int i=5; i>=1; i--)
  19.                 {
  20.                         System.out.println(i+"秒");
  21.                         try {
  22.                                 sleep(1000);
  23.                         } catch (InterruptedException e) {}
  24.                 }
  25.                 System.out.println("時間到!");
  26.                 System.out.println("執行緒名稱: "+Thread.currentThread().getName());
  27.         }
  28. }
複製代碼

作者: 蔡幸融    時間: 2019-11-23 15:09

  1. public class Ch121 extends Thread
  2. {
  3.         MyThread th;
  4.         Ch121()
  5.         {
  6.                 th=new MyThread();
  7.                 th.start();
  8.         }

  9.         public static void main(String[] args)
  10.         {
  11.                 new Ch121();
  12.         }

  13. }
複製代碼
  1. class MyThread extends Thread{
  2.        
  3.         public void run() {
  4.                 for(int i=5; i>=1; i--)
  5.                 {
  6.                         System.out.println(i+"秒");
  7.                         try
  8.                         {
  9.                                 Thread.sleep(1000);
  10.                         } catch (InterruptedException e) {}
  11.                        
  12.                 }
  13.                 System.out.println("時間到!");
  14.                 System.out.println("執行緒名稱: "+Thread.currentThread().getName());
  15.         }
  16.    
  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2