package com.test_thread;
/** * @author 李勝坤
* @version 1.0
* @date 2020/12/7 16:02
*/public class main
}
package com.test_thread;
/** * @author 李勝坤
* @version 1.0
* @date 2020/12/7 20:58
*/public class producer implements runnable
@override
public void run() catch (interruptedexception e)
}//沒有奶,執行下列生產牛奶**
box.setcurrentmilk(i);
system.out.println("*************************");
system.out.println("送奶工: 送來了"+box.getcurrentmilk()+"瓶牛奶");
//修改奶箱狀態
box.setmilkflag(true);
//生產完畢,喚醒消費執行緒
lock.notifyall();}}
}}
package com.test_thread;
/** * @author 李勝坤
* @version 1.0
* @date 2020/12/7 20:58
*/public class customer implements runnable
@override
public void run() catch (interruptedexception e)
}//有牛奶,執行下列消費**
//消費一瓶牛奶,牛奶數減一
box.setcurrentmilk(box.getcurrentmilk()-1);
system.out.println("客戶: 拿走了1瓶牛奶");
system.out.println(" 奶箱: 還剩"+box.getcurrentmilk()+"瓶牛奶");
//如果牛奶數等於0,修改奶箱狀態
if(box.getcurrentmilk()==0)}}
}}
package com.test_thread;
/** * @author 李勝坤
* @version 1.0
* @date 2020/12/7 20:58
*/public class box
public box(int currentmilk, boolean milkflag)
public int getcurrentmilk()
public void setcurrentmilk(int currentmilk)
public boolean getmilkflag()
public void setmilkflag(boolean milkflag)
}
生產者消費者模型
1.生產者消費者問題 producer consumer 有限緩衝,多執行緒同步。生產者執行緒和消費者執行緒共享固定大小緩衝區。2.關鍵是保證生產者不會再緩衝區滿時加入資料,消費者不會在緩衝區空時消耗資料。3.解決辦法 讓生產者在緩衝區滿時休眠,等下次消費者消耗緩衝區中的資料的時候,生產者才能被喚醒...
生產者消費者模型
生產者與消費者 3,2,1 三種關係 生產者與消費者 互斥,同步 消費者與消費者 互斥 生產者與生產者 互斥 條件變數 int pthread cond destroy pthread cond t cond int pthread cond init pthread cond t restrict...
生產者消費者模型
當佇列滿時,生產者需要等待佇列有空間才能繼續往裡面放入商品,而在等待的期間內,生產者必須釋放對臨界資源 即佇列 的占用權。因為生產者如果不釋放對臨界資源的占用權,那麼消費者就無法消費佇列中的商品,就不會讓佇列有空間,那麼生產者就會一直無限等待下去。因此,一般情況下,當佇列滿時,會讓生產者交出對臨界資...