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中相应的方法,没有什么逻辑,整理就不列举出来了。

运行结果:
地基打好啦!
框架搭好啦!

就只在控制台中打印出了这两个内容,也就是说应该是第一个线程执行完成之后,通知所有其他的线程,其他的线程中的一个符合要求的线程运行之后,剩下两个的线程并没有继续执行,是什么原因?

阅读 4k
2 个回答

看错了,你这输出不一定吧。如果执行了wait,就不会有输出了,逻辑写的又问题。把else里的内容拿出来。

while(condition){
    wait();
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题