我想在我的 java 代码中添加 0.488 毫秒的延迟。但是 thread.sleep() 和 Timer 函数只允许毫秒的粒度。如何指定低于该水平的延迟量?
问问题
23794 次
3 回答
15
从 1.5 开始,您可以使用这个不错的方法java.util.concurrent.TimeUnit.sleep(long timeout)
:
TimeUnit.SECONDS.sleep(1);
TimeUnit.MILLISECONDS.sleep(1000);
TimeUnit.MICROSECONDS.sleep(1000000);
TimeUnit.NANOSECONDS.sleep(1000000000);
于 2012-11-27T13:17:05.857 回答
4
您可以使用Thread.sleep(long millis, int nanos)
请注意,您无法保证睡眠的精确度。根据您的系统,计时器可能仅精确到 10 毫秒左右。
于 2012-11-27T06:19:07.100 回答
2
TimeUnit.anything.sleep() 调用 Thread.sleep() 和 Thread.sleep()舍入到毫秒,所有 sleep() 都不可用,精度低于毫秒
Thread.sleep(long millis, int nanos) 实现:
public static void sleep(long millis, int nanos) throws java.lang.InterruptedException
{
ms = millis;
if(ms<0) {
// exception "timeout value is negative"
return;
}
ns = nanos;
if(ns>0) {
if(ns>(int) 999999) {
// exception "nanosecond timeout value out of range"
return;
}
}
else {
// exception "nanosecond timeout value out of range"
return;
}
if(ns<500000) {
if(ns!=0) {
if(ms==0) { // if zero ms and non-zero ns thread sleep 1ms
ms++;
}
}
}
else {
ms++;
}
sleep(ms);
return;
}
同样的情况是方法 wait(long, int);
于 2013-12-24T23:17:06.940 回答