定时器Timer使用教程
Posted 学无止境小奇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定时器Timer使用教程相关的知识,希望对你有一定的参考价值。
👏👏👏
哈喽!大家好,我是【学无止境小奇】,一位热爱分享各种技术的博主!😍😍😍
⭐【学无止境小奇】的创作宗旨:每一条命令都亲自执行过,每一行代码都实际运行过,每一种方法都真实实践过,每一篇文章都良心制作过。✊✊✊
⭐【学无止境小奇】的博客中所有涉及命令、代码的地方,除了提供图片供大家参考,另外会在图片下方提供一份纯文本格式的命令或者代码方便大家粘贴复制直接执行命令或者运行代码。🤝🤝🤝
⭐如果你对技术有着浓厚的兴趣,欢迎关注【学无止境小奇】,欢迎大家和我一起交流。😘😘😘
❤️❤️❤️感谢各位朋友接下来的阅读❤️❤️❤️
文章目录
一、定时器Timer使用教程
1、定时器Timer使用教程
1.1、题目
import java.util.TimerTask;
public class TimerTaskTest extends TimerTask
@Override
public void run()
// TODO Auto-generated method stub
System.out.println("执行任务……");
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
public class TestTimer
public static void main(String[] args)
Timer timer = new Timer();
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, 12);//控制小时
calendar.set(Calendar.MINUTE, 0);//控制分钟
calendar.set(Calendar.SECOND, 0);//控制秒
Date time = calendar.getTime();//执行任务时间为12:00:00
//每天定时12:00执行操作,每秒执行一次
timer.schedule(new TimerTaskTest(), time, 1000 );
我们可以使用Timer来实现一个定时任务功能,首先要继承TimerTask,然后new一个Timer来放入它。
以上是关于定时器Timer使用教程的主要内容,如果未能解决你的问题,请参考以下文章
emWin 2天速成实例教程004_软件定时器(Timer)和位图片动画