简体   繁体   中英

How to suspend current thread for 20 seconds in java?

如何在java中暂停当前线程20秒?

Thread.sleep (20 * 1000);

you may also want to include the try catch:

try {
  Thread.sleep(20*1000);
} catch(InterruptedException e) { }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM