(黑马Java多线程与并发库高级应用)02 传统定时器技术回顾
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(黑马Java多线程与并发库高级应用)02 传统定时器技术回顾相关的知识,希望对你有一定的参考价值。
代码1:
package cn.itcast.heima2; import java.util.Calendar; import java.util.Timer; import java.util.TimerTask; public class TraditionalTimerTest { public static void main(String[] args) { new Timer().schedule(new TimerTask() { @Override public void run() { System.out.println("OUTER:boom!"); } },10000,3000); while(true){ System.out.println(Calendar.getInstance().get(Calendar.SECOND)); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }
代码2:
package cn.itcast.heima2; import java.util.Calendar; import java.util.Timer; import java.util.TimerTask; public class TraditionalTimerTest { static class MyTimerTask extends TimerTask{ static int count=0; @Override public void run() { // TODO Auto-generated method stub count=(count+1)%2; System.out.println("OUTER:boom!"); new Timer().schedule(new MyTimerTask(), 2000+2000*count); } } public static void main(String[] args) { new Timer().schedule(new MyTimerTask(),2000); while(true){ System.out.println(Calendar.getInstance().get(Calendar.SECOND)); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }
以上是关于(黑马Java多线程与并发库高级应用)02 传统定时器技术回顾的主要内容,如果未能解决你的问题,请参考以下文章
(黑马Java多线程与并发库高级应用)04 传统线程同步通信技术