黑马程序员技术交流社区

标题: 关于传统定时器的问题 [打印本页]

作者: 欢欢    时间: 2014-5-9 21:54
标题: 关于传统定时器的问题
本帖最后由 欢欢 于 2014-5-9 21:58 编辑

老师说的第二种解决方法:过2秒炸,过4秒再炸,过2秒炸,过4秒再炸,以此循环。。。
定义 task1 和 task2。在task1里面new task2,在task2里面new Task1。他们两个的时间不一样。怎么做?
  1. import java.util.Date;
  2. import java.util.Timer;
  3. import java.util.TimerTask;

  4. public class TraditionalTimerTest {

  5.         //老师说的第二种解决方法:过2秒炸,过4秒再炸,过2秒炸,过4秒再炸,以此循环。。。
  6.         //定义 task1 和 task2。在task1里面new task2,在task2里面new Task1。他们两个的时间不一样。
  7.         public static void main(String[] args)
  8.         {
  9.                 class MyTimerTaskA extends TimerTask {
  10.                         @Override
  11.                         public void run() {
  12.                                 System.out.println("bombing");
  13.                                 //new Timer().schedule(new MyTimerTaskB(), 2000);
  14.                         }
  15.                 }

  16.                 class MyTimerTaskB extends TimerTask {
  17.                         @Override
  18.                         public void run() {
  19.                                 System.out.println("bombing");
  20.                                 new Timer().schedule(new MyTimerTaskA(), 4000);
  21.                         }
  22.                 }

  23.                 new Timer().schedule(new MyTimerTaskA(), 2000);

  24.                 while(true)
  25.                 {
  26.                         try {
  27.                                 Thread.sleep(1000);
  28.                         } catch (InterruptedException e) {
  29.                                 // TODO Auto-generated catch block
  30.                                 e.printStackTrace();
  31.                         }
  32.                         System.out.println(new Date().getSeconds());
  33.                 }
  34.         }
  35. }
复制代码
不会做啊,在 taskA 里不能 new taskB ,  不知道怎么解决,请高手们指教!








欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2