Java計時器Timer的使用
阿新 • • 發佈:2018-11-13
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
import javax.swing.JFrame;
import javax.swing.Timer;import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class MyFrame {
public static void main(String[] args) {
MyJFrame.setBounds(200,200,300,300);
MyJFrame.setVisible(true);
MyJFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
int t =2000;//定義計時器的間隔時間,2000代表2秒
TestTimer testTimer =new TestTimer();
tme.start(); //開始定時器
}
}
//實現定時器介面的類
class TestTimer implements ActionListener{
public void actionPerformed(ActionEvent e){
System.out.println("Hello Timer!...");
}
}