文章图片
文章图片
【Leetcode 1114. 按序打印 Java多线程编程】由于三个线程只需要按序打印一次,采用Java并发编程艺术最简单的等待通知机制。
class Foo {private boolean isPrintSecond = false;
private boolean isPrintThird = false;
private Object lock = new Object();
public Foo() {}public void first(Runnable printFirst) throws InterruptedException {// printFirst.run() outputs "first". Do not change or remove this line.
synchronized(lock){
printFirst.run();
isPrintSecond = true;
lock.notifyAll();
}
}public void second(Runnable printSecond) throws InterruptedException {synchronized(lock){
while(!isPrintSecond){
lock.wait();
}
// printSecond.run() outputs "second". Do not change or remove this line.
printSecond.run();
isPrintThird = true;
lock.notifyAll();
}
}public void third(Runnable printThird) throws InterruptedException {
synchronized(lock){
while(!isPrintThird){
lock.wait();
}
// printThird.run() outputs "third". Do not change or remove this line.
printThird.run();
}
}
}
推荐阅读
- 人工智能|干货!人体姿态估计与运动预测
- 分析COMP122 The Caesar Cipher
- 技术|为参加2021年蓝桥杯Java软件开发大学B组细心整理常见基础知识、搜索和常用算法解析例题(持续更新...)
- C语言学习(bit)|16.C语言进阶——深度剖析数据在内存中的存储
- Python机器学习基础与进阶|Python机器学习--集成学习算法--XGBoost算法
- 数据结构与算法|【算法】力扣第 266场周赛
- 数据结构和算法|LeetCode 的正确使用方式
- leetcode|今天开始记录自己的力扣之路
- 人工智能|【机器学习】深度盘点(详细介绍 Python 中的 7 种交叉验证方法!)
- 网络|简单聊聊压缩网络