跟踪currentTimeMillis

时间:2012-11-14 05:16:34

标签: java stopwatch

我需要创建一个对象,使用自己的类方法停止执行一段时间。如何让程序跟踪传递时间并在经过指定的时间后执行函数。

我想象.......

long pause; //a variable storing pause length in milliseconds.............
long currentTime; // which store the time of execution of the pause ,............. 

当另一个变量跟踪时间与currentTime + pause具有相同的值时,将执行下一行代码。随着时间的推移,是否有可能在短时间内每毫秒改变一次?

1 个答案:

答案 0 :(得分:2)

对于简单的解决方案,您可以使用Thread#sleep

public void waitForExecution(long pause) throws InterruptedException { 
    // Perform some actions...
    Thread.sleep(pause);
    // Perform next set of actions
}

使用计时器......

public class TimerTest {

    public static void main(String[] args) {
        Timer timer = new Timer("Happy", false);
        timer.schedule(new TimerTask() {

            @Override
            public void run() {
                System.out.println("Hello, I'm from the future!");
            }
        }, 5000);

        System.out.println("Hello, I'm from the present");
    }
}

带循环

long startAt = System.currentTimeMillis();
long pause = 5000;
System.out.println(DateFormat.getTimeInstance().format(new Date()));
while ((startAt + pause) > System.currentTimeMillis()) {
    // Waiting...
}
System.out.println(DateFormat.getTimeInstance().format(new Date()));

注意,这比其他两个解决方案更昂贵,因为循环继续消耗CPU周期,其中Thread#sleepTimer使用允许线程空闲的内部调度机制(和不消耗周期)