线程的通信
2021-04-11 21:27
标签:new not out 执行 线程的状态 之间 优先级 public while 一旦执行方法,都可以使得当前线程进入阻塞状态 线程的通信 标签:new not out 执行 线程的状态 之间 优先级 public while 原文地址:https://www.cnblogs.com/CrabDumplings/p/13358157.html线程的通信
线程的状态
通信涉及到三个方法
代码实现
class Number implements Runnable {
private int num = 1;
@Override
public void run() {
while (true) {
synchronized (this) {
notify();
if (num
注意
sleep()与wait()异同
不同点
相同点