博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
传统定时器
阅读量:6443 次
发布时间:2019-06-23

本文共 1567 字,大约阅读时间需要 5 分钟。

/** *  * @描述: 传统定时器 . * @作者: Wnj . * @创建时间: 2017年5月15日 . * @版本: 1.0 . */public class TraditionalTimerTest {        private static int count = 0;        public static void main(String[] args) {        /*                 *     宿主         *      new Timer().schedule(new TimerTask() {                                        @Override                    public void run() {                        System.out.println("bombing!");                                            }                    //10秒后开始,间隔3秒执行一次                }, 10000,3000);*/                class MyTimerTask extends TimerTask {                        @Override            public void run() {                count = (count + 1) % 2;                System.out.println("bombing!");                new Timer().schedule(/*new TimerTask() {                                                                          @Override                                     public void run() {                                     System.out.println("bombing!");                                     }                                     }*/new MyTimerTask(), 2000 + 2000 * count);            }        }                new Timer().schedule(new MyTimerTask(), 2000);                while (true) {            System.out.println(new Date().getSeconds());            try {                Thread.sleep(1000);            }            catch (InterruptedException e) {                // TODO Auto-generated catch block                e.printStackTrace();            }        }    }

 

转载于:https://www.cnblogs.com/superGG/p/6902234.html

你可能感兴趣的文章
iPhone开发面试题--葵花宝典
查看>>
05-Git
查看>>
Spring quartz 单机、集群+websocket集群实现文本、图片、声音、文件下载及推送、接收及显示...
查看>>
SPOJ104 Highways,跨越数
查看>>
使用rman备份异机恢复数据库
查看>>
Win7-64bit系统下安装mysql的ODBC驱动
查看>>
自己做一款简易的chrome扩展--清除页面广告
查看>>
node中非常重要的process对象,Child Process模块
查看>>
Webserver管理系列:3、Windows Update
查看>>
Linux内核源码详解——命令篇之iostat[zz]
查看>>
Sqlserver2000联系Oracle11G数据库进行实时数据的同步
查看>>
duplicate命令创建physical standby数据库报RMAN-03015 ORA-17628
查看>>
明年计划
查看>>
ORACLE功能GREATEST功能说明具体实例
查看>>
unity, particle play once and destroy
查看>>
hadoop job解决大数据量关联时数据倾斜的一种办法
查看>>
windows配置nginx实现负载均衡集群
查看>>
摄像机知识
查看>>
小tip:纯CSS让overflow:auto页面滚动条出现时不跳动
查看>>
Linq Like
查看>>