1. 程式人生 > >Java計時器Timer的使用

Java計時器Timer的使用

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!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) {
    
   
JFrame MyJFrame =new JFrame("MyJFrame!");
    MyJFrame.setBounds(200,200,300,300);
    MyJFrame.setVisible(true);
    MyJFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   
    int t =2000;//定義計時器的間隔時間,2000代表2秒
    TestTimer testTimer =new TestTimer();
   
Timer tme =new Timer(t,testTimer);
    tme.start();  //開始定時器
    }  
}


//實現定時器介面的類
class TestTimer implements ActionListener{
public void actionPerformed(ActionEvent e){
System.out.println("Hello Timer!...");
}
}
           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述