sleep(long millis, int nanos)

thread类中的sleep方法没有实现ns级别的睡眠

public static void sleep(long millis, int nanos)
    throws InterruptedException {
   
        if (millis < 0) {
   
            throw new IllegalArgumentException("timeout value is negative");
        }

        if (nanos < 0 || nanos > 999999) {
   
            throw new IllegalArgumentException(
                                "nanosecond timeout value out of range");
        }

        if (nanos >= 500000 || (nanos != 0 && millis == 0)) {
   
            millis++;
        }

        sleep(millis);
    }
  • 由jdk源码可知道,只是实现了四舍五入的功能
  • 线程休眠的最小单位还是毫秒。
  • 当第二个参数nanos大于0.5毫秒时或者小于1毫秒,进一位。
  • 其余情况不进位。
 public final void wait(long timeout, int nanos) throws InterruptedException {
   
        if (timeout < 0) {
   
            throw new IllegalArgumentException("timeout value is negative");
        }

        if (nanos < 0 || nanos > 999999) {
   
            throw new IllegalArgumentException(
                                "nanosecond timeout value out of range");
        }

        if (nanos > 0) {
   
            timeout++;
        }

        wait(timeout);
    }
  • wait类似
全部评论

相关推荐

11-18 15:57
门头沟学院 Java
最终归宿是测开:这个重邮的大佬在重邮很有名的,他就喜欢打92的脸,越有人质疑他,他越觉得爽😂
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务