当前位置: 技术问答>java相关
各位大侠,给我一个java的原码吧,是关于时间的,给30分
来源: 互联网 发布时间:2015-01-25
本文导语: 我想在程序中插入时间计数器: 比如我想要30秒的时间,程序开始后自动计时间,在30秒后停止程序,该调用什么方法?请各位大侠帮忙。给30分 | import java.util.*; public class Timetest{ public...
我想在程序中插入时间计数器: 比如我想要30秒的时间,程序开始后自动计时间,在30秒后停止程序,该调用什么方法?请各位大侠帮忙。给30分
|
import java.util.*;
public class Timetest{
public static void main(String arg[]){
long delay = 1000; // 1秒
Timer t = new Timer();
try{
t.schedule(new TimerTask(){
public void run(){
System.exit(0);
}
}, delay);
}catch(Exception e){}
System.out.println("hello world"); //your code
}
}
public class Timetest{
public static void main(String arg[]){
long delay = 1000; // 1秒
Timer t = new Timer();
try{
t.schedule(new TimerTask(){
public void run(){
System.exit(0);
}
}, delay);
}catch(Exception e){}
System.out.println("hello world"); //your code
}
}