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

TOP

返回列表