生产者和消费者

public static void main(String[] args) {
        ArrayList productList = new ArrayList<>();
        ExecutorService executorService = Executors.newFixedThreadPool(15);
        for (int i = 0; i < 5; i++) {
             executorService.submit(new Productor(productList, 8));
        }
        for (int i = 0; i < 10; i++) {
             executorService.submit(new Consumer(productList));
        }
    }

class Consumer implements Runnable {
    private List mProductList;

    public Consumer(List mProductList) {
        this.mProductList = mProductList;
    }

    @Override
    public void run() {
        while (true) {
            synchronized (mProductList) {
                try {
                    while (mProductList.isEmpty()) {
                        mProductList.wait();
                    }
                    int product = mProductList.remove(0);
                    System.out.println("consume product:" + product);
                    mProductList.notifyAll();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

class Productor implements Runnable {
    private List mProductList;
    private int maxSize;

    public Productor(List mProductList, int maxSize) {
        this.mProductList = mProductList;
        this.maxSize = maxSize;
    }

    @Override
    public void run() {
        while (true) {
            synchronized (mProductList) {
                try {
                    while (mProductList.size() == maxSize) {
                        mProductList.wait();
                    }
                    Random random = new Random();
                    int product = random.nextInt();
                    mProductList.add(product);
                    System.out.println("produce product:" + product);
                    mProductList.notifyAll();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

你可能感兴趣的:(生产者和消费者)