我想在我的代码中使用:" Thread.sleep(10000);"在我的esclipe
在netbeans中它起作用,我只是包括: " import java.io. ; import java.net。;" 那我该怎么做才能在myeclipse中使用它
谢谢你
答案 0 :(得分:0)
您只需要确保处理可能出现的任何异常。添加try / catch语句可以解决这个问题:
try {
Thread.sleep(500);
} catch(InterruptedException e) {
Thread.currentThread().interrupt();
}
希望这有帮助!