本帖最後由 張健勳 於 2018-5-25 19:12 編輯
- package bbs.istak.org.tw;
- public class Main {
- public static void main(String[] args) {
- new myThread().start();
- }
- }
- class myThread extends Thread
- {
- public void run()
- {
- for( int i=5; i>=1; i--)
- {
- try {
- Thread.sleep(1000);
- } catch (InterruptedException e) {
- }
-
- System.out.println(i+"秒");
- }
- System.out.println("Time Out!!!");
- System.out.println("執行緒名稱:"+Thread.currentThread().getName());
- }
- }
複製代碼 |