阳光自行车

文章
5
资源
0
加入时间
2年10月21天

java线程之sleep

翻译:https://www.journaldev.com/1020/thread-sleep-java简述Thread .sleep()方法用来暂停当前线程的执行,以毫秒为单位。还有另一个重载方法sleep(long millis, int nanos),它可以用来暂停当前线程的执行,可以指定毫秒和纳秒,允许的纳秒值在0到999999之间Thread.sleep()实例以...