java多线程之间协作运行时没有任何结果没有任何错误信息,麻烦看下代码?
使用 wait() 和 notifyAll() 方法编写一个多线程协作的案例,测试运行时,运行了第二个线程之后,其余的两个线程就没有执行。
public class House {
private boolean hasFoundation = false; // 地基
private boolean hasFrame = false; // 房屋框架
private boolean hasWall = false; // 墙
private boolean hasRoof = false; // 屋顶
public synchronized void buildFoundation() {
hasFoundation = true;
System.out.println("地基打好啦!");
notifyAll();
}
public synchronized void buildFrame() throws InterruptedException {
if (!hasFoundation) {
wait();
} else {
hasFrame = true;
System.out.println("框架搭好啦!");
notifyAll();
}
}
public synchronized void buildWall() throws InterruptedException {
if (!hasFrame) {
wait();
} else {
hasWall = true;
System.out.println("墙砌好啦!");
notifyAll();
}
}
public synchronized void buildRoof() throws InterruptedException {
if (!hasWall) {
wait();
} else {
hasRoof = true;
System.out.println("屋顶盖好啦!");
notifyAll();
}
}
}
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class BuildAHouse {
public static void main(String[] args) {
House house = new House();
ExecutorService exec = Executors.newCachedThreadPool();
exec.execute(new FoundationTeam(house));
exec.execute(new WallTeam(house));
exec.execute(new RoofTeam(house));
exec.execute(new FrameTeam(house));
exec.shutdown();
}
}
另外还有四个类,也就是 FoundationTeam等四个类,分别时实现了 Runnable接口,然后在run()方法中调用了下 house中相应的方法,没有什么逻辑,整理就不列举出来了。
运行结果:
地基打好啦!
框架搭好啦!
就只在控制台中打印出了这两个内容,也就是说应该是第一个线程执行完成之后,通知所有其他的线程,其他的线程中的一个符合要求的线程运行之后,剩下两个的线程并没有继续执行,是什么原因?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看错了,你这输出不一定吧。如果执行了wait,就不会有输出了,逻辑写的又问题。把else里的内容拿出来。