* Timer类:计时器public class Demo1 { public static void main(String[] args) throws InterruptedException { Timer t = new Timer(); // 在指定时间安排指定任务 // 第一个参数,是安排的任务,第二个参数是执行的时间,第三个参数是过多长时间再重复执行 t.schedule(new MyTimerTask(), new Date(188, 6, 1, 14, 22, 50), 30…