5.synchronized锁重入

 

  1. package demo1;
  2. /**
  3. * synchronized锁重入
  4. * Created by liudan on 2017/6/5.
  5. */
  6. public class MyThread5_synchronized1 {
  7. /**
  8. * 父子类同步必须 都 使用synchronized关键字
  9. */
  10. static class Main {
  11. public int count = 10;
  12. public synchronized void operationSub() {
  13. try {
  14. count--;
  15. System.err.println("Main print count = " + count);
  16. Thread.sleep(100);
  17. } catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. }
  21. }
  22. static class Sub extends Main {
  23. public synchronized void operationSub() {
  24. while (count > 0) {
  25. try {
  26. count--;
  27. System.err.println("Sub print count = " + count);
  28. Thread.sleep(100);
  29. super.operationSub();
  30. } catch (InterruptedException e) {
  31. e.printStackTrace();
  32. }
  33. }
  34. }
  35. }
  36. /**
  37. * 关键字 synchronized 拥有锁重入的功能, 也就是使用 synchronized 的时候,当一个线程得到一个对象的锁后,再次请求此对象
  38. * 是是可以再次得到该对象的锁。
  39. */
  40. public static void main(String[] args) {
  41. Thread t = new Thread(new Runnable() {
  42. @Override
  43. public void run() {
  44. Sub s = new Sub();
  45. s.operationSub();
  46. }
  47. });
  48. t.start();
  49. }
  50. }

 

posted @ 2017-08-10 02:11  逍遥叹!!  阅读(270)  评论(0编辑  收藏  举报