生產者消費者模型

2021-08-19 23:58:49 字數 1085 閱讀 8505

以吃蘋果味模型

特點:使用迴圈佇列,不加鎖,設定讀寫位置,但是僅適合兩個執行緒的情況

蘋果: int array;

int head;//表示下乙個要寫的位置

int tail;//表示下乙個要寫的位置

this.array = array;

tail = 0;

head = 0;

}} 生產者:

class

producer

implements

runnable

public void run()catch(exception e)

}elsecatch(exception e)

else}}

}}

消費者:

class

consumer

implements

runnable

public void run()catch(exception e)

}else}}

}

演示**:

public

class main

}

利用監視器方法。wait,notify

final int size = 10;

thread producer = new thread()catch(exception e)

}elsecatch(exception e)}}

}}

};thread consumer1 = new thread()catch(exception e)

}elsecatch(exception e)}}

}}

};producer.start();

consumer1.start();

class boundedbuffer  finally 

}public object take() throws interruptedexception finally

} }

生產者消費者模型

1.生產者消費者問題 producer consumer 有限緩衝,多執行緒同步。生產者執行緒和消費者執行緒共享固定大小緩衝區。2.關鍵是保證生產者不會再緩衝區滿時加入資料,消費者不會在緩衝區空時消耗資料。3.解決辦法 讓生產者在緩衝區滿時休眠,等下次消費者消耗緩衝區中的資料的時候,生產者才能被喚醒...

生產者消費者模型

生產者與消費者 3,2,1 三種關係 生產者與消費者 互斥,同步 消費者與消費者 互斥 生產者與生產者 互斥 條件變數 int pthread cond destroy pthread cond t cond int pthread cond init pthread cond t restrict...

生產者消費者模型

當佇列滿時,生產者需要等待佇列有空間才能繼續往裡面放入商品,而在等待的期間內,生產者必須釋放對臨界資源 即佇列 的占用權。因為生產者如果不釋放對臨界資源的占用權,那麼消費者就無法消費佇列中的商品,就不會讓佇列有空間,那麼生產者就會一直無限等待下去。因此,一般情況下,當佇列滿時,會讓生產者交出對臨界資...