我必须在我的eclipse中包含哪个库才能使用Thread.sleep()

时间:2012-01-11 09:31:52

标签: myeclipse

我想在我的代码中使用:" Thread.sleep(10000);"在我的esclipe

在netbeans中它起作用,我只是包括: " import java.io. ; import java.net。;" 那我该怎么做才能在myeclipse中使用它

谢谢你

1 个答案:

答案 0 :(得分:0)

您只需要确保处理可能出现的任何异常。添加try / catch语句可以解决这个问题:

    try {
       Thread.sleep(500);
    } catch(InterruptedException e) {
       Thread.currentThread().interrupt(); 
    }

希望这有帮助!