您如何制作等待3秒的程序? 我听说过:
obj.wait()
但是我只是想知道语法以及要导入什么?
答案 0 :(得分:1)
这会使您的代码进入休眠状态3秒钟:
try{
Thread.sleep(3000);
} catch(InterruptedException e) {
Thread.currentThread().interrupt();
}
答案 1 :(得分:1)
您必须导入`
java.util.concurrent.TimeUnit
`,您可以运行:
TimeUnit.SECONDS.sleep(100);