溫馨提示×

溫馨提示×

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

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

java 多線程-信號燈法

發(fā)布時間:2020-07-27 00:51:07 來源:網(wǎng)絡 閱讀:519 作者:wx5d21d5e6e5ab1 欄目:編程語言

借助標志位

public class light {
public static void main(String[]args)
{
    Tv tv=new Tv();
    new Player(tv).start();
    new Watcher(tv).start();
}

}
//生產(chǎn)者 演員
class Player extends Thread{
Tv tv;
public Player(Tv tv)
{
    this.tv=tv;
}
public void run()
{
    for(int i=0;i<20;i++)
    {
        if(i%2==0)
        {
            this.tv.play("偶不變");
        }else
        {
            this.tv.play("奇變");
        }
    }
}
}
//消費者 觀眾
class Watcher extends Thread{
Tv tv;
public Watcher(Tv tv)
{
    this.tv=tv;
}
public void run()
{
    for(int i=0;i<20;i++)
    {
        this.tv.watch("無聊");
    }
}
}
//同一個資源 電視
    class Tv {

String voice;
//信號燈
//為真則演員表演,觀眾等待
//為假則觀眾觀看,演員等待

boolean flag=true;

//表演
public synchronized void play(String voice)
{
    if(!flag)
    {
        try {
            this.wait();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    System.out.println("表演了:"+voice);
    this.voice=voice;

    //表演后
    this.notifyAll();
    this.flag=!this.flag;
}

public void watch(String string) {
    // TODO Auto-generated method stub

}

//觀看
public synchronized void watch()
{
    if(flag)
    {
        try {
            this.wait();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    System.out.println("聽到了:"+voice);

    //觀看后:
    this.notifyAll();
    this.flag=!this.flag;
}
}
向AI問一下細節(jié)

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

AI