新手,刚了解Timer类,写了个小程序,为什么控制台没有输出?求指点 import java.awt.*; import java.awt.event.*; import javax.swing.*; public class TestTimer implements ActionListener { Timer timer=new Timer(1000,this); public Tes... 新手,刚了解Timer类,写了个小程序,为什么控制台没有输出?求指点
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TestTimer implements ActionListener
{
Timer timer=new Timer(1000,this);
public TestTimer(){
timer.start();
}
public void actionPerformed(ActionEvent e){
System.out.println("1");
}
public static void main(String[] args){
TestTimer t=new TestTimer();
}
}
public static void main(String[] args){
TestTimer t=new TestTimer();
t.actionPerformed(你要传的参数);
}