java.util.Timer類的使用

來源:互聯網
上載者:User

應用開發中,經常需要一些周期性的操作,比如每5分鐘檢查一下新郵件等。對於這樣的操作最方便、高效的實現方式就是使用java.util.Timer工具類。比如下面的代碼每5分鐘檢查一遍是否有新郵件:

private java.util.Timer timer;
timer = new Timer(true);
timer.schedule(
new java.util.TimerTask() { public void run() { //server.checkNewMail(); 檢查新郵件 } }, 0, 5*60*1000);

 

    使用這幾行代碼之後,Timer本身會每隔5分鐘調用一遍server.checkNewMail()方法,不需要自己啟動線程。Timer本身也是多線程同步的,多個線程可以共用一個Timer,不需要外部的同步代碼。
在《The Java Tutorial》中有更完整的例子:
public class AnnoyingBeep { T
 oolkit toolkit;
 Timer timer;
 public AnnoyingBeep() {
  toolkit = Toolkit.getDefaultToolkit();
  timer = new Timer();
  timer.schedule(new RemindTask(), 0, //initial delay 1*1000); //subsequent   rate
 }

 

 class RemindTask extends TimerTask {
  int numWarningBeeps = 3;
  public void run() {
   if (numWarningBeeps > 0) {
    toolkit.beep();
    System.out.println("Beep!");
    numWarningBeeps--;
   }
   else {
    toolkit.beep();
    System.out.println("Time´s up!");
    //timer.cancel(); //Not necessary because we call       System.exit System.exit(0);
    //Stops the AWT thread (and everything else)
   }
  }
 }
 ...
}
這段程式,每隔3秒響鈴一聲,並列印出一行訊息。迴圈3次。程式輸出如下:
Task scheduled.
Beep!
Beep! //one second after the first beep
Beep! //one second after the second beep
Time´s up! //one second after the third beep

 

Timer類也可以方便地用來作為順延強制,比如下面的代碼延遲指定的時間(以秒為單位)執行某操作。類似電視的延遲關機功能。

 

...public class ReminderBeep {
 ... public ReminderBeep(int seconds) {
  toolkit = Toolkit.getDefaultToolkit();
  timer = new Timer();
  timer.schedule(new RemindTask(), seconds*1000);
  }
  class RemindTask extends TimerTask {
   public void run() {
    System.out.println("Time´s up!");
    toolkit.beep();
    //timer.cancel(); //Not necessary because we call     System.exit System.exit(0);
    //Stops the AWT thread (and everything else)
   }
  }
 ...
 }
}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.