0

エントリが1つだけのint itemHolderで消費者プロデューサーの問題を試しています。コンシューマー スレッドがアイテムを配置したときにプロデューサー スレッドに通知しない理由がわかりません。期待される動作は、プロデューサーがアイテムを itemHolder に配置するまでコンシューマー スレッドが待機することです。一方、外部ミュータックス オブジェクトでロックを使用すると、完全に機能します。

public class ProducerConsumer {

    public static void main(String... args) {
        new ProducerConsumer().execute();
    }

    private volatile int itemHolder = -1; // -1 value represent that ItemHolder is empty

    private void execute() {
        final Thread producer = new Thread(new Runnable() {
            @Override
            public void run() {
                for (int i = 1; i < 5; i++) {
                    synchronized (this){
                        while (itemHolder != -1){ // ItemHolder is full
                            try {
                                this.wait();
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                        }
                        itemHolder = i;
                        notify();
                        System.out.println(String.format("producer: ItemHolder has value, Consumer notified..."));

                    }
                }

            }


        }, "Producer-thread");

        final Thread consumer = new Thread(new Runnable() {
            @Override
            public void run() {
                while (true){
                    synchronized (producer){
                        try {
                            while (itemHolder == -1){ // Don't consume if itemHolder don't have a value
                                producer.wait();
                            }
                            System.out.println(String.format("CONSUMER: consuming %s...", itemHolder));
                            itemHolder = -1;    // re-initialize the itemHolder
                            producer.notify();
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }

                    }
                }
            }
        }, "Consumer-thread");

        consumer.start();
        producer.start();

    }

外部ミューテックスをロックすると、 これは期待どおりに正しく機能します。

public class ProducerConsumerWithMutex {

    public static void main(String... args) {
        new ProducerConsumerWithMutex().execute();
    }
    private final String mutex = "";
    private volatile int itemHolder = -1;

    private void execute() {
        final Thread producer = new Thread(new Runnable() {
            @Override
            public void run() {
                for (int i = 1; i < 5; i++) {
                    synchronized (mutex){
                        while (itemHolder != -1){ // itemHolder is full
                            try {
                                mutex.wait();
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                        }
                        itemHolder = i;
                        System.out.println(String.format("producer: producing %s...", i));
                        mutex.notify();
                        System.out.println(String.format("producer: Consumer notified, itemHolder has item..."));

                    }
                }

            }


        }, "Producer-thread");

        final Thread consumer = new Thread(new Runnable() {
            @Override
            public void run() {
                while (true){
                    synchronized (mutex){
                        try {
                            while (itemHolder == -1){
                                System.out.println("CONSUMER: itemHolder is empty, waiting...");
                                mutex.wait();
                            }
                            System.out.println(String.format("CONSUMER: consuming %s...", itemHolder));
                            itemHolder = -1;
                            mutex.notify();
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }

                    }
                }
            }
        }, "Consumer-thread");

        consumer.start();
        producer.start();

    }
4

3 に答える 3

1

待機通知は、両方のスレッドが同じオブジェクト/クラス ロックを使用している場合に機能します。あなたの場合、待機/通知に使用されるロックは、ここで述べたように異なります。

synchronized(producer) // lock on producer object

synchronized(this) // Runnable object.
于 2013-06-02T17:11:01.117 に答える