当前位置:网站首页>ScheduledExecutorService定时器
ScheduledExecutorService定时器
2022-07-06 23:09:00 【洋啊桑815】
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
public class TestDamo {
public static void main(String[] args){
//ScheduledExecutorService 内部为线程池 弥补了Timer的缺陷
ScheduledExecutorService pool = Executors.newScheduledThreadPool(3);
pool.scheduleAtFixedRate(new Runnable() {
@Override
public void run() {
System.out.println(Thread.currentThread()+"执行一次");
}
},0,2, TimeUnit.SECONDS);
}
}
ScheduledExecutorService 内部为线程池 弥补了Timer的缺陷
边栏推荐
- Why do many people misunderstand technical debt
- How to choose an offer and what factors should be considered
- Analyse approfondie de kubebuilder
- ASP. Net MVC - resource cannot be found error - asp Net MVC – Resource Cannot be found error
- Analysis -- MySQL statement execution process & MySQL architecture
- How to package the parsed Excel data into objects and write this object set into the database?
- Operand of null-aware operation ‘!‘ has type ‘SchedulerBinding‘ which excludes null.
- Clickhouse (03) how to install and deploy Clickhouse
- 2. Overview of securities investment funds
- 全国气象数据/降雨量分布数据/太阳辐射数据/NPP净初级生产力数据/植被覆盖度数据
猜你喜欢
How to design API interface and realize unified format return?
Sublime tips
【736. Lisp 语法解析】
[736. LISP syntax parsing]
Ansible reports an error: "MSG": "invalid/incorrect password: permission denied, please try again“
指针与数组在函数中输入实现逆序输出
当 Knative 遇见 WebAssembly
ThinkPHP关联预载入with
一个酷酷的“幽灵”控制台工具
IMS data channel concept of 5g vonr+
随机推荐
【opencv】图像形态学操作-opencv标记不同连通域的位置
Markdown编辑器
[Yugong series] go teaching course 005 variables in July 2022
【二叉树】二叉树寻路
Addressable 预下载
2. Overview of securities investment funds
Error: No named parameter with the name ‘foregroundColor‘
torch optimizer小解析
[736. LISP syntax parsing]
【736. Lisp 语法解析】
全国气象数据/降雨量分布数据/太阳辐射数据/NPP净初级生产力数据/植被覆盖度数据
Factor analysis r practice (with R installation tutorial and code)
Analyse approfondie de kubebuilder
[ArcGIS tutorial] thematic map production - population density distribution map - population density analysis
Operand of null-aware operation ‘!‘ has type ‘SchedulerBinding‘ which excludes null.
Analysis -- MySQL statement execution process & MySQL architecture
ASP. Net MVC - resource cannot be found error - asp Net MVC – Resource Cannot be found error
The execution order of return in JS' try catch finally
SQL injection HTTP header injection
c语言神经网络基本代码大全及其含义