import java.util.*;
public class test
{
private static Timer timer=new Timer();
private static TimerTask task=new TimerTask()
{
public void run()
{
yourThing();
}
};
public static void main(String args[])
{
timer.schedule(task, 1000, 1000);
// schedule(TimerTask task, int 第一次的时间, int 过后重复的时间)
// 1000 = 1 秒
}
public static void yourStuff()
{
// 你要它做的东西. 例如 print 时间.
}
}
原帖由 ~Zero 于 2008-11-3 04:39 PM 发表
???
为何那么说?
em0007
我发现有打错了, 上面我打 yourThing() 下面却写 yourStuff()...
不好意思啊~
em0013
欢迎光临 JBTALKS.CC (https://jbtalks.my/) | Powered by Discuz! X2.5 |