Java中synchronized 修饰在static方法和非static方法的区别

时间:2021-11-22 11:30:36

【问题描述】关于Java中synchronized 用在实例方法和对象方法上面的区别

【问题分析】大家都知道,在Java中,synchronized 是用来表示同步的,我们可以synchronized 来修饰一个方法(实例方法和类方法---注:不知道这样叫准确不准确,大家理解我的意识就行了)。也可以synchronized 来修饰方法里面的一个语句块。

修饰实例方法:

  1. public synchronized void x() throws InterruptedException
  2. {
  3. ; i++)
  4. {
  5. );
  6. System.out.println("x.......................");
  7. }
  8. }

修饰类方法(static 方法):

  1. public static synchronized void staticX() throws InterruptedException
  2. {
  3. ; i++)
  4. {
  5. );
  6. System.out.println("staticX.......................");
  7. }
  8. }

修饰方法里面语句块:

  1. public static void staticX() throws InterruptedException
  2. {
  3. synchronized (locks)
  4. {
  5. ; i++)
  6. {
  7. );
  8. System.out.println("staticX.......................");
  9. }
  10. }
  11. }

注意:这里不能用synchronized修饰方法外面的语句块(我把他叫做类语句块),虽然我们可以在方法外面定义语句块,这样做会遇到编译错误,这里涉及到了Java里面的对象初始化的部分知识。大概的原因就是synchronized锁住的是对象,当初始化对象的时候,JVM在对象初始化完成之前会调用方法外面的语句块,这个时候对象还不存在,所以就不存在锁了。

那么,在static方法和非static方法前面加synchronized到底有什么不同呢?

大家都知道,static的方法属于类方法,它属于这个Class(注意:这里的Class不是指Class的某个具体对象),那么static获取到的锁,就是当前调用这个方法的对象所属的类(Class,而不再是由这个Class产生的某个具体对象了)。而非static方法获取到的锁,就是当前调用这个方法的对象的锁了。所以,他们之间不会产生互斥。

看代码:

  1. package com.jack.zhang.chapter9.classlock;
  2. /**
  3. * @author Jack Zhang
  4. * @version vb1.0
  5. * @Email virgoboy2004@163.com
  6. * @Date 2012-5-20
  7. */
  8. public class Test
  9. {
  10. public static synchronized void staticX() throws InterruptedException
  11. {
  12. ; i++)
  13. {
  14. );
  15. System.out.println("staticX.......................");
  16. }
  17. }
  18. public synchronized void x() throws InterruptedException
  19. {
  20. ; i++)
  21. {
  22. );
  23. System.out.println("x.......................");
  24. }
  25. }
  26. public static void main(String[] args)
  27. {
  28. final Test test1 = new Test();
  29. Thread thread = new Thread(new Runnable()
  30. {
  31. public void run()
  32. {
  33. try
  34. {
  35. test1.x();
  36. }
  37. catch (InterruptedException e)
  38. {
  39. // TODO Auto-generated catch block
  40. e.printStackTrace();
  41. }
  42. }
  43. }, "a");
  44. Thread thread1 = new Thread(new Runnable()
  45. {
  46. public void run()
  47. {
  48. try
  49. {
  50. Test.staticX();
  51. }
  52. catch (InterruptedException e)
  53. {
  54. // TODO Auto-generated catch block
  55. e.printStackTrace();
  56. }
  57. }
  58. }, "b");
  59. thread1.start();
  60. thread.start();
  61. }
  62. }

运行结果是:

  1. staticX.......................
  2. x.......................
  3. x.......................
  4. staticX.......................
  5. staticX.......................
  6. x.......................
  7. x.......................
  8. staticX.......................
  9. x.......................
  10. staticX.......................
  11. staticX.......................
  12. x.......................
  13. x.......................
  14. staticX.......................
  15. x.......................
  16. staticX.......................
  17. x.......................
  18. staticX.......................
  19. x.......................
  20. staticX.......................

那当我们想让所有这个类下面的对象都同步的时候,也就是让所有这个类下面的对象共用同一把锁的时候,我们如何办呢?

看代码:

  1. package com.jack.zhang.chapter9.classlock;
  2. /**
  3. * @author Jack Zhang
  4. * @version vb1.0
  5. * @Email virgoboy2004@163.com
  6. * @Date 2012-5-20
  7. */
  8. public class Test
  9. {
  10. ];
  11. public static void staticX() throws InterruptedException
  12. {
  13. synchronized (locks)
  14. {
  15. ; i++)
  16. {
  17. );
  18. System.out.println("staticX.......................");
  19. }
  20. }
  21. }
  22. public void x() throws InterruptedException
  23. {
  24. synchronized (locks)
  25. {
  26. ; i++)
  27. {
  28. );
  29. System.out.println("x.......................");
  30. }
  31. }
  32. }
  33. public static void main(String[] args)
  34. {
  35. final Test test1 = new Test();
  36. final Test test2 = new Test();
  37. Thread thread = new Thread(new Runnable()
  38. {
  39. public void run()
  40. {
  41. try
  42. {
  43. test1.x();
  44. }
  45. catch (InterruptedException e)
  46. {
  47. // TODO Auto-generated catch block
  48. e.printStackTrace();
  49. }
  50. }
  51. }, "a");
  52. Thread thread1 = new Thread(new Runnable()
  53. {
  54. public void run()
  55. {
  56. try
  57. {
  58. Test.staticX();
  59. }
  60. catch (InterruptedException e)
  61. {
  62. // TODO Auto-generated catch block
  63. e.printStackTrace();
  64. }
  65. }
  66. }, "b");
  67. thread1.start();
  68. thread.start();
  69. }
  70. }

运行结果:

  1. staticX.......................
  2. staticX.......................
  3. staticX.......................
  4. staticX.......................
  5. staticX.......................
  6. staticX.......................
  7. staticX.......................
  8. staticX.......................
  9. staticX.......................
  10. staticX.......................
  11. x.......................
  12. x.......................
  13. x.......................
  14. x.......................
  15. x.......................
  16. x.......................
  17. x.......................
  18. x.......................
  19. x.......................
  20. x.......................

http://blog.csdn.net/virgoboy2004/article/details/7585182