AJPFX關於Timer類的學習

  • Timer類:計時器
    public class Demo1 {
    public static void main(String[] args) throws InterruptedException {
    Timer t = new Timer();
    // 在指定時間安排指定任務
    // 第一個參數,是安排的任務,第二個參數是執行的時間,第三個參數是過多長時間再重複執行
    t.schedule(new MyTimerTask(), new Date(188, 6, 1, 14, 22, 50), 3000);
    while (true) {
    Thread.sleep(1000);
    System.out.println(new Date());
    }
    }
    }
    class MyTimerTask extends TimerTask {br/>@Overridepublic void run() {System.out.println("起牀背英語單詞");}}
相關文章
相關標籤/搜索