本帖最後由 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();
- }
- }
複製代碼 |