我对此有点迷茫。所以这里有一些 ActionListener 的代码:
public static void main(String[] args)
{
ActionListener listener = new ActionListener(){
public void actionPerformed(ActionEvent event){
System.out.println("hello");
}
};
Timer displayTimer = new Timer(5000, listener);
displayTimer.start();
}
它一遍又一遍地打印你好......我不太明白。为什么它不只打印一次?
谢谢