Board logo

標題: ThreadTest [打印本頁]

作者: ray    時間: 2012-11-2 21:15     標題: ThreadTest

  1. class MyThread extends Thread
  2. {
  3.         int myID;
  4.        
  5.         MyThread(int id)
  6.         {
  7.                 this.myID = id;
  8.         }
  9.        
  10.         public void run()
  11.         {
  12.                 for(int i = 0 ; i < 10;i++)
  13.                 {
  14.                         System.out.println("Thread<"+myID+">執行了第"+i+"次!");
  15.                         try
  16.                         {
  17.                                 Thread.sleep(1000);
  18.                         }
  19.                         catch(Exception e)
  20.                         {}
  21.                 }
  22.         }
  23. }

  24. public class ThreadTest
  25. {

  26.         /**
  27.          * @param args
  28.          */
  29.         public static void main(String[] args) {
  30.                 // TODO Auto-generated method stub

  31.         }

  32. }
複製代碼

作者: ray    時間: 2012-11-2 21:22

  1. public static void main(String[] args)
  2.         {
  3.                 // TODO Auto-generated method stub
  4.                 Thread t1 = new MyThread(1);
  5.                 Thread t2 = new MyThread(2);
  6.                 t1.start();
  7.                 t2.start();
  8.         }
複製代碼





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