本帖最后由 王雷1 于 2013-11-2 21:02 编辑
简单的写了一下 思路 。 看看吧- class Text2 {
- static Boolean 结果 = false;
- static boolean 是否超时 = false;
- public static void main(String[] args) throws InterruptedException {
- get();
- Thread.sleep(1000);
- if(结果==false){
- System.out.println("超时");
- 是否超时 = true;
- }
- }
- private static void get() throws InterruptedException {
- Thread.sleep(2000);
- if(是否超时=false){
- 结果=true;
- }else {
- System.out.println("运算完成");
- }
- }
- }
复制代码 |