如题,想让线程挂起10秒,当不起作用,线程还是正常执行,并没有挂起。
public static void main(String[] args) throws Exception{
new Thread(()->{
System.out.println("线程挂起");
LockSupport.parkNanos(1000 * 1000 * 1000 * 10);
System.out.println("线程运行");
}).start();
}
LockSupport.parkNanos(1000 * 1000 * 1000 * 10L);这样就可以了!