当前位置:   article > 正文

synchronized对象锁与类锁的区别_synchronized锁类和对象的区别

synchronized锁类和对象的区别

synchronized关键字涉及到锁的概念,在java中,synchronized锁大家又通俗的称为:方法锁,对象锁 和 类锁 。关于锁只有以下两点:

  • 无论是修饰方法还是修饰代码块都是 对象锁,当一个线程访问一个带synchronized方法时,由于对象锁的存在,所有加synchronized的方法都不能被访问(前提是在多个线程调用的是同一个对象实例中的方法)
  • 无论是修饰静态方法还是锁定某个对象,都是 类锁.一个class其中的静态方法和静态变量在内存中只会加载和初始化一份,所以,一旦一个静态的方法被申明为synchronized,此类的所有的实例化对象在调用该方法时,共用同一把锁,称之为类锁

1、对象锁

1.1 对象锁写法一:修饰方法

synchronized修饰普通方法,锁定的是当前对象,

  1. public class SyncTest {
  2. public synchronized void methon(){
  3. //方法体
  4. }
  5. }

一次只能有一个线程进入同一个对象实例method()方法。

1.2 对象锁的写法二:修饰代码块,锁实例对象

  1. public class SyncObjectTest implements Runnable{
  2. private int count = 0;
  3. @Override
  4. public void run() {
  5. String name = Thread.currentThread().getName();
  6. if ("add".equalsIgnoreCase(name)) {
  7. addCount();
  8. } else {
  9. delCount();
  10. }
  11. }
  12. public void addCount() {
  13. synchronized (this) {
  14. for (int i = 0; i < 5; i++) {
  15. try {
  16. count = count + 1;
  17. System.out.println(Thread.currentThread().getName() + "[" + i + "]: " + count);
  18. Thread.sleep(10);
  19. } catch (InterruptedException e) {
  20. e.printStackTrace();
  21. }
  22. }
  23. }
  24. }
  25. public void delCount() {
  26. synchronized (this) {
  27. for (int i = 0; i < 5; i++) {
  28. try {
  29. count = count - 1;
  30. System.out.println(Thread.currentThread().getName() + "[" + i + "]: " + count);
  31. Thread.sleep(10);
  32. } catch (InterruptedException e) {
  33. e.printStackTrace();
  34. }
  35. }
  36. }
  37. }
  38. public static void main(String[] args) {
  39. SyncObjectTest objectTest = new SyncObjectTest();
  40. Thread thread = new Thread(objectTest, "add");
  41. Thread thread1 = new Thread(objectTest, "del");
  42. thread.start();
  43. thread1.start();
  44. }
  45. }

输出结果:

  1. add[0]: 1
  2. add[1]: 2
  3. add[2]: 3
  4. add[3]: 4
  5. add[4]: 5
  6. del[0]: 4
  7. del[1]: 3
  8. del[2]: 2
  9. del[3]: 1
  10. del[4]: 0

根据输出结果显示,说明在同一个对象实例中,synchronized修饰的所有方法不能并行执行

2、类锁

2.1 类锁写法一:修饰静态方法

  1. public class SyncClassObject implements Runnable {
  2. private static int count = 0;
  3. @Override
  4. public void run() {
  5. method();
  6. }
  7. public synchronized static void method() {
  8. for (int i = 0; i < 5; i++) {
  9. count = count + 1;
  10. System.out.println(Thread.currentThread().getName() + "[" + i + "]: " + count);
  11. }
  12. }
  13. public static void main(String[] args) {
  14. SyncClassObject class1 = new SyncClassObject();
  15. SyncClassObject class2 = new SyncClassObject();
  16. Thread first = new Thread(class1, "first");
  17. Thread second = new Thread(class2, "second");
  18. first.start();
  19. second.start();
  20. }
  21. }

输出结果:

  1. first[0]: 1
  2. first[1]: 2
  3. first[2]: 3
  4. first[3]: 4
  5. first[4]: 5
  6. second[0]: 6
  7. second[1]: 7
  8. second[2]: 8
  9. second[3]: 9
  10. second[4]: 10

上述结果可知在类锁的情况下,即便创建了两个对象,类锁依然生效。

2.2 类锁写法二:修饰代码块、锁类对象

  1. public class SyncClassTest {
  2. public void test1() {
  3. synchronized (SyncClassTest.class) { //静态方法块类锁
  4. int i = 5;
  5. while (i-- > 0) {
  6. System.out.println(Thread.currentThread().getName() + ": " + i);
  7. try {
  8. Thread.sleep(500);
  9. } catch (InterruptedException e) {
  10. e.printStackTrace();
  11. }
  12. }
  13. }
  14. }
  15. public static synchronized void test2() { //静态方法类锁
  16. int i = 5;
  17. while (i-- >0 ){
  18. System.out.println(Thread.currentThread().getName() + " : " + i);
  19. try {
  20. Thread.sleep(500);
  21. } catch (InterruptedException e) {
  22. e.printStackTrace();
  23. }
  24. }
  25. }
  26. public static void main(String[] args) {
  27. SyncClassTest syncClassTest = new SyncClassTest();
  28. Thread thread = new Thread(new Runnable() {
  29. @Override
  30. public void run() {
  31. syncClassTest.test1();
  32. }
  33. });
  34. Thread thread1 = new Thread(new Runnable() {
  35. @Override
  36. public void run() {
  37. SyncClassTest.test2();
  38. }
  39. });
  40. thread.start();
  41. thread1.start();
  42. }
  43. }

输出结果:

  1. Thread-0: 4
  2. Thread-0: 3
  3. Thread-0: 2
  4. Thread-0: 1
  5. Thread-0: 0
  6. Thread-1 : 4
  7. Thread-1 : 3
  8. Thread-1 : 2
  9. Thread-1 : 1
  10. Thread-1 : 0

上述结果表示类锁已生效。

其实,类锁修饰方法和代码块的效果和对象锁是一样的,因为类锁只是一个抽象出来的概念,只是为了区别静态方法的特点,因为静态方法是所有对象实例共用的,所以对应着synchronized修饰的静态方法的锁也是唯一的,所以抽象出来个类锁。

3、同时修饰静态和非静态方法

  1. public class SyncClassTest {
  2. public synchronized void test1() { //类锁
  3. int i = 5;
  4. while (i-- > 0) {
  5. System.out.println(Thread.currentThread().getName() + ": " + i);
  6. try {
  7. Thread.sleep(500);
  8. } catch (InterruptedException e) {
  9. e.printStackTrace();
  10. }
  11. }
  12. }
  13. public static synchronized void test2() { //静态方法类锁
  14. int i = 5;
  15. while (i-- >0 ){
  16. System.out.println(Thread.currentThread().getName() + " : " + i);
  17. try {
  18. Thread.sleep(500);
  19. } catch (InterruptedException e) {
  20. e.printStackTrace();
  21. }
  22. }
  23. }
  24. public static void main(String[] args) {
  25. SyncClassTest syncClassTest = new SyncClassTest();
  26. Thread thread = new Thread(new Runnable() {
  27. @Override
  28. public void run() {
  29. syncClassTest.test1();
  30. }
  31. });
  32. Thread thread1 = new Thread(new Runnable() {
  33. @Override
  34. public void run() {
  35. SyncClassTest.test2();
  36. }
  37. });
  38. thread.start();
  39. thread1.start();
  40. }
  41. }

输出结果:

  1. Thread-0: 4
  2. Thread-1 : 4
  3. Thread-1 : 3
  4. Thread-0: 3
  5. Thread-0: 2
  6. Thread-1 : 2
  7. Thread-1 : 1
  8. Thread-0: 1
  9. Thread-1 : 0
  10. Thread-0: 0

上面的synchronized同时修饰静态方法和实例方法,结果交替运行,证明类锁和对象锁是两个不同的锁,控制不同的区域,互不干扰.

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

闽ICP备14008679号