java計時器學習筆記
阿新 • • 發佈:2018-08-12
read pre () pub run 指定 執行 exception rup
/**
* @param args
* @throws InterruptedException
*/
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 {
@Override
public void run() {
System.out.println("起床背英語單詞");
}
java計時器學習筆記