• sleep()和wait()有什么区别?


    • sleep() 是 Thread 类的静态本地方法;wait() 是Object类的成员本地方法
    • sleep() 方法可以在任何地方使用;wait() 方法则只能在同步方法或同步代码块中使用,否则抛出异常Exception in thread "Thread-0" java.lang.IllegalMonitorStateException
    • sleep() 会休眠当前线程指定时间,释放 CPU 资源,不释放对象锁,休眠时间到自动苏醒继续执行;wait() 方法放弃持有的对象锁,进入等待队列,当该对象被调用 notify() / notifyAll() 方法后才有机会竞争获取对象锁,进入运行状态
    • JDK1.8 sleep() wait() 均需要捕获 InterruptedException 异常

    测试代码

    public class TestWaitSleep {
     
        private static Object obj = new Object();
        
        public static void main(String[] args) {
            
            //测试sleep()
            //测试 RunnableImpl1 wait(); RunnableImpl2 notify()
            Thread t1 = new Thread(new RunnableImpl1(obj));
            Thread t2 = new Thread(new RunnableImpl2(obj));
            t1.start();
            t2.start();
            
            //测试RunnableImpl3 wait(long timeout)方法
            Thread t3 = new Thread(new RunnableImpl3(obj));
            t3.start();
        }
     
        
    }
     
    class RunnableImpl1 implements Runnable {
     
        private Object obj;
        
        public RunnableImpl1(Object obj) {
            this.obj = obj;
        }
        
        public void run() {
            System.out.println("run on RunnableImpl1");
            synchronized (obj) {
                System.out.println("obj to wait on RunnableImpl1");
                try {
                    obj.wait();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("obj continue to run on RunnableImpl1");
            }
        }
    }
     
    class RunnableImpl2 implements Runnable {
     
        private Object obj;
        
        public RunnableImpl2(Object obj) {
            this.obj = obj;
        }
        
        public void run() {
            System.out.println("run on RunnableImpl2");
            System.out.println("睡眠3秒...");
            try {
                Thread.sleep(3000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            synchronized (obj) {
                System.out.println("notify obj on RunnableImpl2");
                obj.notify();
            }
        }
    }
     
    class RunnableImpl3 implements Runnable {
     
        private Object obj;
        
        public RunnableImpl3(Object obj) {
            this.obj = obj;
        }
        
        public void run() {
            System.out.println("run on RunnableImpl3");
            synchronized (obj) {
                System.out.println("obj to wait on RunnableImpl3");
                try {
                    obj.wait(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println("obj continue to run on RunnableImpl3");
            }
        }
    }

    打印结果

    run on RunnableImpl2
    睡眠3秒...
    run on RunnableImpl1
    obj to wait on RunnableImpl1
    run on RunnableImpl3
    obj to wait on RunnableImpl3
    obj continue to run on RunnableImpl3
    notify obj on RunnableImpl2
    obj continue to run on RunnableImpl1


     


     

    所有资源资源汇总于公众号



     

  • 相关阅读:
    K-Means算法总结
    C#设计模式(1)——单例模式
    sql 建表以及查询---复杂查询之成绩排名
    c# 折半查找法实现代码
    c# 合并两个有序数组
    C#中static void Main(string[] args)的含义
    C#中Main函数为什么要static
    C# 生成订单号的几种方式
    sql for xml path用法
    web端跨域调用webapi
  • 原文地址:https://www.cnblogs.com/ConstXiong/p/11993363.html
Copyright © 2020-2023  润新知