试着使用Timer类编写一个简单的计时器(java)
让程序在启用Timer100毫秒后执行TimerTask所描述额度任务(模拟让一个虚拟计算机BIOS主板鸣音三次,并打印出鸣音记录),然后每一秒钟执行一次,执行三次后取消...
让程序在启用Timer100毫秒后执行TimerTask所描述额度任务(模拟让一个虚拟计算机BIOS主板鸣音三次,并打印出鸣音记录),然后每一秒钟执行一次,执行三次后取消该任务,同时取消计时器,程序退出。
展开
1个回答
展开全部
import java.util.*;
public class Test
{
public static void main(String[] args)
{
Timer t=new Timer();
t.schedule(new task(),100,1000);
}
}
class task extends TimerTask
{
public void run()
{
int count=0;
for(int i=0;i<3;i++)
{
System.out.println("鸣音~~~~~~~~~~~~~~~~~~");
System.out.println("第"+(count+1)+"次鸣音!");
count++;
try
{
Thread.sleep(1000);
}
catch(Exception e)
{
e.printStackTrace();
}
}
System.exit(0);
}
}
public class Test
{
public static void main(String[] args)
{
Timer t=new Timer();
t.schedule(new task(),100,1000);
}
}
class task extends TimerTask
{
public void run()
{
int count=0;
for(int i=0;i<3;i++)
{
System.out.println("鸣音~~~~~~~~~~~~~~~~~~");
System.out.println("第"+(count+1)+"次鸣音!");
count++;
try
{
Thread.sleep(1000);
}
catch(Exception e)
{
e.printStackTrace();
}
}
System.exit(0);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询