synchronized 语句块中到底锁住了什么对象 ?


并发编程栏目代码 GitHub package 地址: 点击打开链接

博客并发编程栏目 : 点击打开链接


  对synchronized(this)的一些理解

  一、当两个并发线程访问同一个对象object中的这个synchronized(this)同步代码块时,一个时间内只能有一个线程得到执行。
  另一个线程必须等待当前线程执行完这个代码块以后才能执行该代码块。
  二、然而,另一个线程仍然可以访问该object中的非synchronized(this)同步代码块。
  三、尤其关键的是,当一个线程访问object的一个synchronized(this)同步代码块时,其他线程对object中所有其它synchronized(this)同步代码块的访问将被阻塞。
  四、第三个例子同样适用其它同步代码块,它就获得了这个object的对象锁。结果,其它线程对该object对象所有同步代码部分的访问都被暂时阻塞。
  五、以上规则对其它对象锁同样适用。
  <p>
  每个锁对象都有两个队列,一个是就绪队列,一个是阻塞队列,就绪队列存储了将要获得锁的线程,阻塞队列存储了被阻塞的线程,
  当一个线程被唤醒 (notify)后,才会进入到就绪队列,等待CPU的调度,
  反之,当一个线程被wait后,就会进入阻塞队列,等待下一次被唤醒,这个涉及到线程间的通 信,
  当第一个线程执行输出方法时,获得同步锁,执行输出方法,恰好此时第二个线程也要执行输出方法,
  但发现同步锁没有被 释放,第二个线程就会进入就绪队列,等待锁被释放。
  <p>
  一个线程执行互斥代码过程如下:
  1. 获得同步锁;
  2. 清空工作内存;
  3. 从主内存拷贝对象副本到工作内存;
  4. 执行代码(计算或者输出等);
  5. 刷新主内存数据;
  6. 释放同步锁。
  所以,synchronized不仅保证了多线程的内存可见性,也解决了线程的随机执行性的问题,即保证了多线程的并发有序性。


对于代码中 this 的理解 参阅博客  透析Java本质-谁创建了对象,this是什么


//实例方法
    private synchronized void aVoid_() {}
    
    private void aVoid() {

        synchronized (this) {
            //...
        }
    }

    //静态方法
    private static synchronized void aVoidStatic_() {}

    private static void aVoidStatic() {

        synchronized (WhatLock_.class) {
            //...
        }
    }



测试代码内容


/**
 * 实例对象同步锁测试
 */
class InstanceClass {

    private static final org.slf4j.Logger LOGGER
            = LoggerFactory.getLogger(InstanceClass.class);

    /**
     * 耗时较长的同步方法
     */
    protected synchronized void instanceMethodOfLongRunning() {
        LOGGER.info("into instanceMethodOfLongRunning() ...             obj:<{}>", this);

        try {
            Thread.sleep(5000L);
        } catch (InterruptedException e) {
            LOGGER.info("run instanceMethodOfLongRunning() error ...    obj:<{}> , e : <{}>", this);
        }
        LOGGER.info("get out instanceMethodOfLongRunning() ...          obj:<{}>", this);
    }

    /**
     * 瞬间可完成的同步方法
     */
    protected synchronized void instanceMethodOfInstantlyComplete() {
        LOGGER.info("into instanceMethodOfInstantlyComplete() ...             obj:<{}>", this);
    }

    /**
     * 瞬间可完成的非同步方法
     */
    protected synchronized void instanceMethodOfInstantlyCompleteNotSynchronized() {
        LOGGER.info("into instanceMethodOfInstantlyCompleteNotSynchronized() ...             obj:<{}>", this);
    }

}

/**
 * 静态方法同步锁测试
 */
class StaticClass {

    private static final org.slf4j.Logger LOGGER
            = LoggerFactory.getLogger(StaticClass.class);

    /**
     * 耗时较长的同步方法
     */
    protected synchronized static void staticMethodOfLongRunning() {
        LOGGER.info("into staticMethodOfLongRunning ...");
        try {
            Thread.sleep(8000L);
        } catch (InterruptedException e) {
            LOGGER.info("run staticMethodOfLongRunning error ...  e : <{}>", e.getMessage());
        }
        LOGGER.info("get out staticMethodOfLongRunning ...");
    }

    /**
     * 瞬间可完成的同步方法
     */
    protected synchronized static void staticMethodOfInstantlyComplete() {
        LOGGER.info("into staticMethodOfInstantlyComplete ...");
    }

    /**
     * 瞬间可完成的非同步方法
     */
    protected static void staticMethodOfInstantlyCompleteNotSynchronized() {
        LOGGER.info("into staticMethodOfInstantlyCompleteNotSynchronized ...");
    }

}

执行测试


public class WhatLock_ {

    private static final org.slf4j.Logger LOGGER
            = LoggerFactory.getLogger(WhatLock_.class);

    private static ExecutorService executorService
            = Executors.newFixedThreadPool(10);

    /**
     * 静态方法访问
     * result:方法上的锁为当前 class 对象
     * <p>
     * 执行结果
     * ~~~~~~~~~ runStaticTest() Submit ticket start ~~~~~~~~~
     * into staticMethodOfLongRunning ...
     * ~~~~~~~~~ runStaticTest() Submit ticket end ~~~~~~~~~
     * into staticMethodOfInstantlyCompleteNotSynchronized ...
     * get out staticMethodOfLongRunning ...
     * into staticMethodOfInstantlyComplete ...
     */
    private static void runStaticTest() {
        LOGGER.info("~~~~~~~~~ runStaticTest() Submit ticket start ~~~~~~~~~ ");

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                StaticClass.staticMethodOfLongRunning();
            }
        });

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                StaticClass.staticMethodOfInstantlyComplete();
            }
        });

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                StaticClass.staticMethodOfInstantlyCompleteNotSynchronized();
            }
        });

        LOGGER.info("~~~~~~~~~ runStaticTest() Submit ticket end ~~~~~~~~~ ");

    }

    /**
     * 相同实例对象 访问同一耗时较长的同步方法
     * result:方法上的锁为当前实例对象的锁,出现竞争,先得到的先执行
     * <p>
     * 执行结果:
     * ~~~~~~~~~ runSameObjInstanceTest() Submit ticket start ~~~~~~~~~
     * ~~~~~~~~~ runSameObjInstanceTest() Submit ticket end ~~~~~~~~~
     * into instanceMethodOfLongRunning() ...             obj:<com.thread.basis.InstanceClass@2ac41c60>
     * get out instanceMethodOfLongRunning() ...          obj:<com.thread.basis.InstanceClass@2ac41c60>
     * into instanceMethodOfInstantlyCompleteNotSynchronized() ...             obj:<com.thread.basis.InstanceClass@2ac41c60>
     * into instanceMethodOfInstantlyComplete() ...             obj:<com.thread.basis.InstanceClass@2ac41c60>
     */
    private static void runSameObjInstanceTest() {

        LOGGER.info("~~~~~~~~~ runSameObjInstanceTest() Submit ticket start ~~~~~~~~~ ");

        InstanceClass instanceClass_A
                = new InstanceClass();

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                instanceClass_A.instanceMethodOfLongRunning();
            }
        });

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                instanceClass_A.instanceMethodOfInstantlyComplete();
            }
        });

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                instanceClass_A.instanceMethodOfInstantlyCompleteNotSynchronized();
            }
        });

        LOGGER.info("~~~~~~~~~ runSameObjInstanceTest() Submit ticket end ~~~~~~~~~ ");

    }


    /**
     * 不同实例对象 访问同一耗时较长的同步方法
     * result:方法上的锁为当前实例对象的锁
     * <p>
     * 执行结果:
     * ~~~~~~~~~ runDifferentObjInstanceTest() Submit ticket start ~~~~~~~~~
     * ~~~~~~~~~ runDifferentObjInstanceTest() Submit ticket end ~~~~~~~~~
     * into instanceMethodOfLongRunning() ...             obj:<com.thread.basis.InstanceClass@68cbb050>
     * into instanceMethodOfInstantlyComplete() ...       obj:<com.thread.basis.InstanceClass@720fdae1>
     * get out instanceMethodOfLongRunning() ...          obj:<com.thread.basis.InstanceClass@68cbb050>
     */
    private static void runDifferentObjInstanceTest() {

        LOGGER.info("~~~~~~~~~ runDifferentObjInstanceTest() Submit ticket start ~~~~~~~~~ ");

        InstanceClass instanceClass_A
                = new InstanceClass();
        InstanceClass instanceClass_B
                = new InstanceClass();

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                instanceClass_A.instanceMethodOfLongRunning();
            }
        });

        executorService.execute(new Runnable() {
            @Override
            public void run() {
                instanceClass_B.instanceMethodOfInstantlyComplete();
            }
        });

        LOGGER.info("~~~~~~~~~ runDifferentObjInstanceTest() Submit ticket end ~~~~~~~~~ ");

    }


    public static void main(String[] args) {
        //runStaticTest();

        //runDifferentObjInstanceTest();
        runSameObjInstanceTest();
        executorService.shutdown();
    }
}


最终结果分析


 1.对于静态方法的访问,同步方法上的锁为当前Class 对象,访问一个同步的静态方法时候其它同步静态方法被阻塞
 2.对于实例对象访问同步方法,方法上的锁为当前实例对象,例如:
         A a = new A() ; B b = new B();
         同步方法上的锁对应自己的 a,b锁(this),因此a和 b 并发访问同一同步方法,互相不阻塞
    当同一实例对象并发访问同步方法时候,会产生阻塞,因为锁都是this.
  3.一切皆对象,回归到1,2
  4.注意:缩减同步代码块的范围、根据需求使用同一锁、避免各种阻塞影响性能


转载于:https://my.oschina.net/huluerwa/blog/311311

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值