maizhen 2021-09-15 15:18 采纳率: 50%
浏览 94
已结题

为啥我的代码synchronized锁直接从无锁跳到了轻量级锁

img


从图片中 对象头从 001到000再到001,从无锁跳到了轻量级锁,只有一个线程访问锁的话不是先变成偏向锁的吗?

public class SynchronizedLockInfoTest {

    private static Object object = new Object();




    public static void main(String[] args) {


        System.out.println(object.toString());

        SynchronizedLockInfoTest synchronizedLockInfoTest = new SynchronizedLockInfoTest();

        Thread1 thread1 = synchronizedLockInfoTest.new Thread1();
        thread1.start();


    }


    public class Thread1 extends  Thread{
        @Override
        public void run() {

            Thread thread = Thread.currentThread();
            System.out.println(1);
            System.out.println(thread.getName() + ClassLayout.parseInstance(object).toPrintable());
            synchronized (object){
                System.out.println(2);
                System.out.println(thread.getName() + ClassLayout.parseInstance(object).toPrintable());
            }
            System.out.println(3);
            System.out.println(thread.getName() + ClassLayout.parseInstance(object).toPrintable());

        }
    }

}
  • 写回答

1条回答 默认 最新

报告相同问题?

问题事件

  • 系统已结题 9月23日
  • 已采纳回答 9月15日
  • 创建了问题 9月15日

悬赏问题

  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退