我想在我的代码中使用:"Thread.sleep(10000);"在我的esclipe 中
在netbeans中,它起了作用,我只是包括:"导入java.io.;导入java.net.;"那么我应该在myeclipses中做些什么来使用它
感谢u
您只需要确保处理任何可能出现的异常。添加try/catch语句就可以了:
try {
Thread.sleep(500);
} catch(InterruptedException e) {
Thread.currentThread().interrupt();
}
希望这能有所帮助!