当前位置: 技术问答>java相关
用java怎样实现每隔一小时启动一个线程
来源: 互联网 发布时间:2015-05-10
本文导语: //下面的是我写的一个每隔一分钟输出一次 hello world! Test test = new Test(); //取系统时间类 while(true){ int t = test.getSystemMinute(); //取秒 if(t/59 == 1){ System.out.println("Hello World!"); try{ ...
//下面的是我写的一个每隔一分钟输出一次 hello world!
Test test = new Test(); //取系统时间类
while(true){
int t = test.getSystemMinute(); //取秒
if(t/59 == 1){
System.out.println("Hello World!");
try{
int j = 0;
while(j
Test test = new Test(); //取系统时间类
while(true){
int t = test.getSystemMinute(); //取秒
if(t/59 == 1){
System.out.println("Hello World!");
try{
int j = 0;
while(j