synchronized和Lock
2021/8/25 13:06:04
本文主要是介绍synchronized和Lock,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
-
synchronized是关键字Lock是一个类。
-
synchronized是个全自动会自动释放锁 Lock是手动的 。
-
synchronized无法判断获取锁的状态Lock可以判断。
-
synchronized 线程1 (获得锁, 阻塞了) 线程2 (等待, 一直等) Lock锁就不一定会一直等下去
会有locak.tryLock()
尝试获取锁。 -
synchronized 可重入锁,不可中断 , 非公平 ; Lock 可重入锁,可以判断锁, 默认非公平(可以自己设置)。
-
synchronized 适合锁少量的同步代码, Lock适合锁大量的同步代码。
-
synchronized 可以锁代码块和方法, Lock只能锁代码块。
-
使用Lock锁JVM将花费较少的时间来调度线程,性能更好, 并且可扩展性好 有更多的子类。
Lock分为三部分
- ReentrantLock() 可重入锁
- ReentrantReadWriteLock.ReadLock() 读锁
- ReentrantReadWriteLock.WriteLock() 写锁
public ReentrantLock() { sync = new NonfairSync(); } /** * Creates an instance of {@code ReentrantLock} with the * given fairness policy. * * @param fair {@code true} if this lock should use a fair ordering policy */ public ReentrantLock(boolean fair) { sync = fair ? new FairSync() : new NonfairSync(); }
这里是可重入锁 ReentrantLock() 的源码
不传参数的时候默认是非公平锁=============》不按顺序来的 可插队
传参是true时候是公平锁,false时候是非公平锁 =========》 完全按照顺序执行 存在3s的进程等到3h的进程
写法上区别
synchronized
/** * 注释 * * @author sunhao * @Date 2021-08-23-21:11 */ public class Test01 { public static void main(String[] args) { Book book = new Book(); new Thread(() -> { for (int i = 0; i < 60; i++) book.sell(); }, "A").start(); new Thread(() -> { for (int i = 0; i < 60; i++) book.sell(); }, "B").start(); new Thread(() -> { for (int i = 0; i < 60; i++) book.sell(); }, "C").start(); } } class Book{ int num = 60; public synchronized void sell(){ if (num > 0) System.out.println(Thread.currentThread().getName()+"卖出了第" + (num--)+ "本剩余" + num + "本"); } // Lock lock = new ReentrantLock(); // public void sell(){ // lock.lock(); // try { // if (num > 0) // System.out.println(Thread.currentThread().getName()+"卖出了第" + (num--)+ "本剩余" + num + "本"); // } catch (Exception e) { // e.printStackTrace(); // } finally { // lock.unlock(); // } // } }
new ReentrantLock();
Lock分为三部曲
1.new ReentrantLock();
2.lock.lock();
3.try-catch-finally=>lock.unlock();
/** * 注释 * * @author sunhao * @Date 2021-08-23-21:11 */ public class Test01 { public static void main(String[] args) { Book book = new Book(); new Thread(() -> { for (int i = 0; i < 60; i++) book.sell(); }, "A").start(); new Thread(() -> { for (int i = 0; i < 60; i++) book.sell(); }, "B").start(); new Thread(() -> { for (int i = 0; i < 60; i++) book.sell(); }, "C").start(); } } class Book{ int num = 60; // public synchronized void sell(){ // if (num > 0) // System.out.println(Thread.currentThread().getName()+"卖出了第" + (num--)+ "本剩余" + num + "本"); // } Lock lock = new ReentrantLock(); public void sell(){ lock.lock(); try { if (num > 0) System.out.println(Thread.currentThread().getName()+"卖出了第" + (num--)+ "本剩余" + num + "本"); } catch (Exception e) { e.printStackTrace(); } finally { lock.unlock(); } } }
这篇关于synchronized和Lock的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework