6.1 公平和非公平锁

6.1.1 是什么

  1. package s02.e06;
  2. import java.util.concurrent.locks.Lock;
  3. import java.util.concurrent.locks.ReentrantLock;
  4. public class T1 {
  5. volatile int n = 0;
  6. public void add() {
  7. n++;
  8. }
  9. public static void main(String[] args) {
  10. Lock lock = new ReentrantLock();
  11. }
  12. }

image.png
公平锁―是指多个线程按照申请锁的顺序来获取锁,类似排队打饭,先来后到。
非公平锁是指多个线程获取锁的顺序并不是按照申请锁的顺序,有可能后中请的线程比先中请的线程优先获取锁。
在高并发的情况下,有可能会造成优先级反转或者饥饿现象。

6.1.2 两者区别

  1. 公平锁:Threads acquire a fair lock in the order in which they requested it

公平锁,就是很公平,在并发环境中,每个线程在获取锁时会先查看此锁维护的等待队列,如果为空,或者当前线程是等待队列的第一个,就占有锁,否则就会加入到等待队列中,以后会按照 FIFO 的规则从队列中取到自己

  1. 非公平锁:a nonfair lock permits barging: threads requesting a lock can jump ahead of the queue of waiting threads if the lockhappens to be available when it is requested.

非公平锁比较粗鲁,上来就直接尝试占有锁,如果尝试失败,就再采用类似公平锁那种方式。

6.1.3 题外话

Java ReentrantLock,通过构造函数指定该锁是否是公平锁,默认是非公平锁。非公平锁的优点在于吞吐量比公平锁大。
Synchronized 也是一种非公平锁

6.2 可重入锁(又名递归锁)

6.1.1 是什么

指的是同一线程外层函数获得锁之后﹐内层递归函数仍然能获取该锁的代码,在同一个线程在外层方法获取锁的时候,在进入内层方法会自动获取锁。
也即是说,线程可以进入任何一个它已经拥有的锁所同步着的代码块。
ReentrantLock/Synchronized 就是一个典型的可重入锁
可重入锁最大的作用是避免死锁

6.1.2 Synchronized

  1. package s02.e06;
  2. class Phone {
  3. public synchronized void sendSMS() throws Exception {
  4. System.out.println(Thread.currentThread().getName() + "\t invoked sendSMS()");
  5. sendEmail();
  6. }
  7. public synchronized void sendEmail() throws Exception {
  8. System.out.println(Thread.currentThread().getName() + "\t #######invoked sendEmai()");
  9. }
  10. }
  11. public class ReentrantLockDemo {
  12. public static void main(String[] args) {
  13. Phone phone = new Phone();
  14. new Thread(() -> {
  15. try {
  16. phone.sendSMS();
  17. } catch (Exception e) {
  18. e.printStackTrace();
  19. }
  20. }, "t1").start();
  21. new Thread(() -> {
  22. try {
  23. phone.sendSMS();
  24. } catch (Exception e) {
  25. e.printStackTrace();
  26. }
  27. }, "t2").start();
  28. }
  29. }

image.png
通过上面示例我们可以看出,t1 线程在外层方法获取锁的时候,t1 在进入内层方法会自动获取锁

6.1.3 ReentrantLock

  1. package s02.e06;
  2. import java.util.concurrent.locks.Lock;
  3. import java.util.concurrent.locks.ReentrantLock;
  4. class Phone implements Runnable {
  5. Lock lock = new ReentrantLock();
  6. @Override
  7. public void run() {
  8. get();
  9. }
  10. public void get() {
  11. lock.lock();
  12. try {
  13. System.out.println(Thread.currentThread().getName() + "\t invoked get()");
  14. set();
  15. } finally {
  16. lock.unlock();
  17. }
  18. }
  19. public void set() {
  20. lock.lock();
  21. try {
  22. System.out.println(Thread.currentThread().getName() + "\t #######invoked set()");
  23. } finally {
  24. lock.unlock();
  25. }
  26. }
  27. }
  28. public class ReentrantLockDemo {
  29. public static void main(String[] args) {
  30. Phone phone = new Phone();
  31. Thread t3 = new Thread(phone, "t3");
  32. Thread t4 = new Thread(phone, "t4");
  33. t3.start();
  34. t4.start();
  35. }
  36. }

image.png

  1. package s02.e06;
  2. import java.util.concurrent.locks.Lock;
  3. import java.util.concurrent.locks.ReentrantLock;
  4. class Phone implements Runnable {
  5. Lock lock = new ReentrantLock();
  6. @Override
  7. public void run() {
  8. get();
  9. }
  10. public void get() {
  11. lock.lock();
  12. lock.lock(); // 多加一层锁
  13. try {
  14. System.out.println(Thread.currentThread().getName() + "\t invoked get()");
  15. set();
  16. } finally {
  17. lock.unlock();
  18. lock.unlock();
  19. }
  20. }
  21. public void set() {
  22. lock.lock();
  23. try {
  24. System.out.println(Thread.currentThread().getName() + "\t #######invoked set()");
  25. } finally {
  26. lock.unlock();
  27. }
  28. }
  29. }
  30. public class ReentrantLockDemo {
  31. public static void main(String[] args) {
  32. Phone phone = new Phone();
  33. Thread t3 = new Thread(phone, "t3");
  34. Thread t4 = new Thread(phone, "t4");
  35. t3.start();
  36. t4.start();
  37. }
  38. }

image.png
多加一层锁也是可以的,只要加锁跟解锁次数匹配即可

6.3 自旋锁(spinlock)

是指尝试获取锁的线程不会立即阻塞,而是采用循环的方式去尝试获取锁,这样的好处是减少线程上下文切换的消耗,缺点是循环会消耗 CPU
image.png

通过 CAS 操作完成自旋锁,A 线程先进来调用 myLock 方法自己持有锁 5 秒钟,B 随后进来后发现当前有线程持有锁,不是 null,所以只能通过自旋等待,直到 A 释放锁后B随后抢到。

  1. package s02.e06;
  2. import java.util.concurrent.TimeUnit;
  3. import java.util.concurrent.atomic.AtomicReference;
  4. public class SpinLockDemo {
  5. // 原子引用线程
  6. AtomicReference<Thread> atomicReference = new AtomicReference<>();
  7. public void myLock() {
  8. Thread thread = Thread.currentThread();
  9. System.out.println(Thread.currentThread().getName() + "\t come in o(n_n)o");
  10. while (!atomicReference.compareAndSet(null, thread)) {
  11. }
  12. }
  13. public void myUnlock() {
  14. Thread thread = Thread.currentThread();
  15. atomicReference.compareAndSet(thread, null);
  16. System.out.println(Thread.currentThread().getName() + "\t invoked myUnLock()");
  17. }
  18. public static void main(String[] args) {
  19. SpinLockDemo spinLockDemo = new SpinLockDemo();
  20. new Thread(() -> {
  21. spinLockDemo.myLock();
  22. // 暂停一会儿线程
  23. try {
  24. TimeUnit.SECONDS.sleep(5);
  25. } catch (InterruptedException e) {
  26. e.printStackTrace();
  27. }
  28. spinLockDemo.myUnlock();
  29. }, "AA").start();
  30. try {
  31. TimeUnit.SECONDS.sleep(1);
  32. } catch (InterruptedException e) {
  33. e.printStackTrace();
  34. }
  35. new Thread(() -> {
  36. spinLockDemo.myLock();
  37. try {
  38. TimeUnit.SECONDS.sleep(1);
  39. } catch (InterruptedException e) {
  40. e.printStackTrace();
  41. }
  42. spinLockDemo.myUnlock();
  43. }, "BB").start();
  44. }
  45. }

image.png

6.4 独占锁(写锁)/共享锁(读锁)/互斥锁

独占锁:指该锁一次只能被一个线程所持有。对 ReentrantLock 和 Synchronized 而言都是独占锁
共享锁:指该锁可被多个线程所持有。对 ReentrantReadWriteLock 其读锁是共享锁,其写锁是独占锁。
读锁的共享锁可保证并发读是非常高效的,读写,写读,写写的过程是互斥的。
多个线程同时读一个资源类没有任何问题,所以为了满足并发量,读取共享资源应该可以同时进行。但是如果有一个线程想去写共享资源来,就不应该再有其它线程可以对该资源进行读或写
小总结:

  • 读-读能共存
  • 读-写不能共存
  • 写-写不能共存
  • 写操作:原子 + 独占,整个过程必须是一个完整的统一体,中间不许被分割,被打断 ```java package s02.e06;

import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit;

// 资源类 class Mycache { private volatile Map map = new HashMap<>();

  1. // private Lock lock=new ReentrantLock();
  2. public void put(String key, Object value) {
  3. System.out.println(Thread.currentThread().getName() + "\t 正在写入: " + key);
  4. // 暂停一会儿线程
  5. try {
  6. TimeUnit.MILLISECONDS.sleep(300);
  7. } catch (InterruptedException e) {
  8. e.printStackTrace();
  9. }
  10. map.put(key, value);
  11. System.out.println(Thread.currentThread().getName() + "\t写入完成了");
  12. }
  13. public void get(String key) {
  14. System.out.println(Thread.currentThread().getName() + "\t正在读取:");
  15. // 暂停一会儿线程
  16. try {
  17. TimeUnit.MILLISECONDS.sleep(300);
  18. } catch (InterruptedException e) {
  19. e.printStackTrace();
  20. }
  21. Object result = map.get(key);
  22. System.out.println(Thread.currentThread().getName() + "\t 读取完成:" + result);
  23. }

}

public class ReadWriteLockDemo { public static void main(String[] args) { Mycache mycache = new Mycache();

  1. for (int i = 0; i < 5; i++) {
  2. final int tempInt = i;
  3. new Thread(() -> {
  4. mycache.put(tempInt + "", tempInt + "");
  5. }, String.valueOf(i)).start();
  6. }
  7. for (int i = 0; i < 5; i++) {
  8. final int tempInt = i;
  9. new Thread(() -> {
  10. mycache.get(tempInt + "");
  11. }, String.valueOf(i)).start();
  12. }
  13. }

}

  1. ![image.png](https://cdn.nlark.com/yuque/0/2022/png/390086/1644732885158-8f03e825-3ff1-4aa0-b17c-4dfcdf960eb3.png#clientId=u227a32c3-c034-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=445&id=u3f2dcee6&margin=%5Bobject%20Object%5D&name=image.png&originHeight=445&originWidth=156&originalType=binary&ratio=1&rotation=0&showTitle=false&size=10806&status=done&style=none&taskId=u76d0a7f1-ddd6-403d-b1a9-347e3566e3f&title=&width=156)<br />在不加锁的情况下,写入操作被打断,完全违背了原子性
  2. ```java
  3. package s02.e06;
  4. import java.util.HashMap;
  5. import java.util.Map;
  6. import java.util.concurrent.TimeUnit;
  7. import java.util.concurrent.locks.ReentrantReadWriteLock;
  8. // 资源类
  9. class Mycache {
  10. private volatile Map<String, Object> map = new HashMap<>();
  11. private ReentrantReadWriteLock rwLock = new ReentrantReadWriteLock();
  12. // private Lock lock=new ReentrantLock();
  13. public void put(String key, Object value) {
  14. rwLock.writeLock().lock();
  15. try {
  16. System.out.println(Thread.currentThread().getName() + "\t 正在写入: " + key);
  17. // 暂停一会儿线程
  18. try {
  19. TimeUnit.MILLISECONDS.sleep(300);
  20. } catch (InterruptedException e) {
  21. e.printStackTrace();
  22. }
  23. map.put(key, value);
  24. System.out.println(Thread.currentThread().getName() + "\t写入完成了");
  25. } catch (Exception e) {
  26. e.printStackTrace();
  27. } finally {
  28. rwLock.writeLock().unlock();
  29. }
  30. }
  31. public void get(String key) {
  32. rwLock.readLock().lock();
  33. try {
  34. System.out.println(Thread.currentThread().getName() + "\t正在读取:");
  35. // 暂停一会儿线程
  36. try {
  37. TimeUnit.MILLISECONDS.sleep(300);
  38. } catch (InterruptedException e) {
  39. e.printStackTrace();
  40. }
  41. Object result = map.get(key);
  42. System.out.println(Thread.currentThread().getName() + "\t 读取完成:" + result);
  43. } catch (Exception e) {
  44. e.printStackTrace();
  45. } finally {
  46. rwLock.readLock().unlock();
  47. }
  48. }
  49. }
  50. public class ReadWriteLockDemo {
  51. public static void main(String[] args) {
  52. Mycache mycache = new Mycache();
  53. for (int i = 0; i < 5; i++) {
  54. final int tempInt = i;
  55. new Thread(() -> {
  56. mycache.put(tempInt + "", tempInt + "");
  57. }, String.valueOf(i)).start();
  58. }
  59. for (int i = 0; i < 5; i++) {
  60. final int tempInt = i;
  61. new Thread(() -> {
  62. mycache.get(tempInt + "");
  63. }, String.valueOf(i)).start();
  64. }
  65. }
  66. }

image.png
通过读写锁,保证写入操作的原子性和读取操作的高并发性