Timer timer =new Timer(t,testTimer);
timer.start();
t是以毫秒为单位的时间,
testTimer是实现了ActionListener接口类的对象,其需要实现或者重写actionPerformed方法,也就是定时器不断重复调用的程序
timer.start()是开始执行上面的actionPerformed的程序
标签:基本,定时器,actionPerformed,timer,start,testTimer,Timer From: https://www.cnblogs.com/geeklee/p/17300612.html