- public class Ch123 extends Thread {
-
- public void run()
- {
- System.out.println("給你5秒鐘走路!!聽到沒有!!");
- 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) {
- Ch123 app=new 123);
- app.start();
- }
- }
複製代碼 |