17、信号灯

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.syn;
public class TestPc2 {
    public static void main(String[] args) {
        Tv tv = new Tv();
        new Player(tv).start();
        new Watcher(tv).start();
    }
}
//生产者-演员
class Player extends Thread{
    Tv tv;
    public Player(Tv tv){
        this.tv=tv;
    }
    @Override
    public void run() {
        for (int i = 0; i < 5; i++) {
            if (i%2==0){
                this.tv.play("小品节目:"+i);
            }else {
                this.tv.play("大合唱节目:"+i);
            }
        }
    }
}
//消费者-观众
class Watcher extends Thread{
    Tv tv;
    public Watcher(Tv tv){
        this.tv=tv;
    }
    @Override
    public void run() {
        for (int i = 0; i < 5; i++) {
            tv.watch();
        }
    }
}
//产品-节目
class Tv{
    //演员表演,观众观看 true
    //观众等待,演员准备 false
    String programme;
    boolean flag=true;
     
    //表演
    public synchronized void play(String programme){
        if (!flag){
            try{
                this.wait();
            }catch (InterruptedException e){
                e.printStackTrace();
            }
        }
        System.out.println("演员表演开始: "+programme);
        this.notifyAll(); //通知观众观看,唤醒
        this.programme=programme;
        this.flag=!this.flag;
    }
    //观看
    public synchronized void watch(){
        if (flag){
            try{
                this.wait();
            }catch (InterruptedException e){
                e.printStackTrace();
            }
        }
        System.out.println("观众观看:"+programme);
        this.notifyAll(); //通知演员,开始表演
        this.flag=!this.flag;
    }
}

  

 

posted @   颓废且努力奋斗的人  阅读(12)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
点击右上角即可分享
微信分享提示