美文网首页
你永远叫不醒一个装睡的人

你永远叫不醒一个装睡的人

作者: brzhang | 来源:发表于2016-12-15 11:19 被阅读67次
    public class TheManPossumsleep implements Runnable {
    
        @Override
        public void run() {
            doWork();
        }
        private void doWork() {
            int i=1;
            while (true) {
                try {
                    Thread.sleep(3000);
                } catch (InterruptedException e) {
                    //e.printStackTrace();
                    System.out.println("第"+i+"被叫醒一次...");
                }
                i++;
                System.out.println("继续睡觉...");
            }
        }
    
        public static void main(String[] args) throws InterruptedException {
            Thread thread = new Thread(new TheManPossumsleep());
            thread.start();
            while (true){
                if (!thread.isInterrupted()) {
                    System.out.println("发现那家伙在睡觉,叫醒他...");
                    thread.interrupt();
                }
                Thread.sleep(1000);
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:你永远叫不醒一个装睡的人

          本文链接:https://www.haomeiwen.com/subject/hpowmttx.html