91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java 多線程-生產者消費者模式-管程法

發布時間:2020-07-05 15:32:53 來源:網絡 閱讀:298 作者:wx5d21d5e6e5ab1 欄目:編程語言

生產者消費者模式管程法
通過容器中介,將數據放入和取出

wait()導致當前線程等待,直到另一個線程調用該對象的notify()或notyfyAll()方法
notify()喚醒正在等待對象監視器的單個線程,notifyAll()喚醒正在等待對象監視器的所有線程

public class tuble {
public static void main(String[]args)
{
    SynContainer container=new SynContainer();
    new Productor(container).start();
    new Productor(container).start();
    new Consumer(container).start();
}

}
//生產者,將數據存入容器
class Productor extends Thread
{
    SynContainer container;
public Productor(SynContainer container)
{
    this.container=container;
}
public void run()
{

        for(int i=0;i<100;i++)
        {
            System.out.println("生產第"+i+"個饅頭");
            container.push(new Data(i));
        }

}
}
//消費者,將數據從容器取出
class Consumer extends Thread
{
SynContainer container;
public Consumer(SynContainer container)
{
    this.container=container;
}
public void run()
{
    for(int i=0;i<100;i++)
    {
        System.out.println("消費第"+container.pop().id+"個饅頭");

    }
}
}
//緩沖區
class SynContainer 
{
Data[] datas=new Data[10]; //緩沖區里面存取數據
int count=0;//計數器
//存
public synchronized void push(Data data)
{
    //何時能生產
    if(count==datas.length)
    {
        try {
            this.wait();//線程阻塞,消費者通知生產才解除阻塞
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    datas[count]=data;
    count++;
    this.notify(); //存在數據,通知消費者可消費
}
//取
public synchronized Data  pop()
{
    //何時能取:
    if(count==0)
    {
        try {
            this.wait();//線程阻塞,生產者通知消費解除阻塞
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    count--;
    Data data=datas[count];
    this.notifyAll();//存在空間,通知生產者可生產
    return data;
}
}
//數據
class Data 
{
int id;
public Data(int id)
{
    this.id=id;
}
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海晏县| 札达县| 清徐县| 曲水县| 师宗县| 姚安县| 郸城县| 姜堰市| 班玛县| 醴陵市| 霸州市| 北流市| 确山县| 晋宁县| 大化| 沂水县| 子洲县| 平潭县| 平南县| 江孜县| 陵川县| 尚志市| 苍山县| 随州市| 马龙县| 琼海市| 务川| 河北区| 股票| 柏乡县| 庆城县| 大荔县| 华容县| 苏尼特左旗| 科技| 水城县| 峡江县| 嘉兴市| 长治市| 拜城县| 洮南市|