当前位置:   article > 正文

java之Synchronized(锁住对象和锁住代码)_synchronized 项目锁住get set代码

synchronized 项目锁住get set代码

1、问题

Synchronized我们一般都知道是锁,但是我们怎么区分是锁对象还是锁代码呢?

2、测试Demo

    package leetcode.chenyu.test;
     
    public class Synchronized {
       
         class Test {
            public synchronized  void testFirst() {
                print("testFirst");
            }
           
            public void testSecond() {
                synchronized(this) {
                    print("testSecond");
                }
            }
           
            public void testThird() {
                synchronized(Test.class) {
                    print("testThird");
                }
            }
           
            public  void print(String method) {
                System.out.println(method + "start");
                try {
                    Thread.sleep(100);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                System.out.println(method + "end");
            }
        }
           
        class TestThread extends Thread {
           
            public int mType = 0;
            public Test mTest = null;
           
            public TestThread(int type, Test test) {
                this.mType = type;
                this.mTest = test;
            }
           
            public void run() {
                if (mTest == null) {
                    if (mType == 1) {
                        Test test = new Test();
                        test.testFirst();
                    }
                    else if (mType == 2) {
                        Test test = new Test();
                        test.testSecond();
                    }
                    else if (mType == 3) {
                        Test test = new Test();
                        test.testThird();
                    }
                } else {
                    if (mType == 1) {
                        mTest.testFirst();
                    }
                    else if (mType == 2) {
                        mTest.testSecond();

更多请见:http://www.mark-to-win.com/tutorial/51788.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/292134
推荐阅读
相关标签
  

闽ICP备14008679号