Skip to content
百科百科
操作系统
设计模式
算法
题解
java
leetcode
  • 设计模式
    • /设计模式/设计模式 - 单例.md
      • /设计模式/设计模式 - 中介者.md
        • /设计模式/设计模式 - 享元.md
          • /设计模式/设计模式 - 代理.md
            • /设计模式/设计模式 - 原型模式.md
              • /设计模式/设计模式 - 命令.md
                • /设计模式/设计模式 - 备忘录.md
                  • /设计模式/设计模式 - 外观.md
                    • /设计模式/设计模式 - 工厂方法.md
                      • /设计模式/设计模式 - 抽象工厂.md
                        • /设计模式/设计模式 - 桥接.md
                          • /设计模式/设计模式 - 模板方法.md
                            • /设计模式/设计模式 - 状态.md
                              • /设计模式/设计模式 - 生成器.md
                                • /设计模式/设计模式 - 空对象.md
                                  • /设计模式/设计模式 - 策略.md
                                    • /设计模式/设计模式 - 简单工厂.md
                                      • /设计模式/设计模式 - 组合.md
                                        • /设计模式/设计模式 - 装饰.md
                                          • /设计模式/设计模式 - 观察者.md
                                            • 7. 观察者(Observer)
                                              • Intent
                                                • Class Diagram
                                                  • Implementation
                                                    • JDK
                                                  • /设计模式/设计模式 - 解释器.md
                                                    • /设计模式/设计模式 - 访问者.md
                                                      • /设计模式/设计模式 - 责任链.md
                                                        • /设计模式/设计模式 - 迭代器.md
                                                          • /设计模式/设计模式 - 适配器.md
                                                            • 一、前言
                                                              • 一、概述
                                                                • 设计模式目录

                                                                  2022年5月21日大约 2 分钟

                                                                  此页内容
                                                                  • 7. 观察者(Observer)
                                                                    • Intent
                                                                    • Class Diagram
                                                                    • Implementation
                                                                    • JDK

                                                                  # 7. 观察者(Observer)

                                                                  # Intent

                                                                  定义对象之间的一对多依赖,当一个对象状态改变时,它的所有依赖都会收到通知并且自动更新状态。

                                                                  主题(Subject)是被观察的对象,而其所有依赖者(Observer)称为观察者。

                                                                  ![img](https://cs-notes-1256109796.cos.ap-guangzhou.myqcloud.com/7a3c6a30-c735-4edb-8115-337288a4f0f2.jpg" width="600)

                                                                  # Class Diagram

                                                                  主题(Subject)具有注册和移除观察者、并通知所有观察者的功能,主题是通过维护一张观察者列表来实现这些操作的。

                                                                  观察者(Observer)的注册功能需要调用主题的 registerObserver() 方法。

                                                                  img

                                                                  # Implementation

                                                                  天气数据布告板会在天气信息发生改变时更新其内容,布告板有多个,并且在将来会继续增加。

                                                                  img

                                                                  public interface Subject {
                                                                      void registerObserver(Observer o);
                                                                  
                                                                      void removeObserver(Observer o);
                                                                  
                                                                      void notifyObserver();
                                                                  }
                                                                  
                                                                  public class WeatherData implements Subject {
                                                                      private List<Observer> observers;
                                                                      private float temperature;
                                                                      private float humidity;
                                                                      private float pressure;
                                                                  
                                                                      public WeatherData() {
                                                                          observers = new ArrayList<>();
                                                                      }
                                                                  
                                                                      public void setMeasurements(float temperature, float humidity, float pressure) {
                                                                          this.temperature = temperature;
                                                                          this.humidity = humidity;
                                                                          this.pressure = pressure;
                                                                          notifyObserver();
                                                                      }
                                                                  
                                                                      @Override
                                                                      public void registerObserver(Observer o) {
                                                                          observers.add(o);
                                                                      }
                                                                  
                                                                      @Override
                                                                      public void removeObserver(Observer o) {
                                                                          int i = observers.indexOf(o);
                                                                          if (i >= 0) {
                                                                              observers.remove(i);
                                                                          }
                                                                      }
                                                                  
                                                                      @Override
                                                                      public void notifyObserver() {
                                                                          for (Observer o : observers) {
                                                                              o.update(temperature, humidity, pressure);
                                                                          }
                                                                      }
                                                                  }
                                                                  
                                                                  public interface Observer {
                                                                      void update(float temp, float humidity, float pressure);
                                                                  }
                                                                  
                                                                  public class StatisticsDisplay implements Observer {
                                                                  
                                                                      public StatisticsDisplay(Subject weatherData) {
                                                                          weatherData.registerObserver(this);
                                                                      }
                                                                  
                                                                      @Override
                                                                      public void update(float temp, float humidity, float pressure) {
                                                                          System.out.println("StatisticsDisplay.update: " + temp + " " + humidity + " " + pressure);
                                                                      }
                                                                  }
                                                                  
                                                                  public class CurrentConditionsDisplay implements Observer {
                                                                  
                                                                      public CurrentConditionsDisplay(Subject weatherData) {
                                                                          weatherData.registerObserver(this);
                                                                      }
                                                                  
                                                                      @Override
                                                                      public void update(float temp, float humidity, float pressure) {
                                                                          System.out.println("CurrentConditionsDisplay.update: " + temp + " " + humidity + " " + pressure);
                                                                      }
                                                                  }
                                                                  
                                                                  public class WeatherStation {
                                                                      public static void main(String[] args) {
                                                                          WeatherData weatherData = new WeatherData();
                                                                          CurrentConditionsDisplay currentConditionsDisplay = new CurrentConditionsDisplay(weatherData);
                                                                          StatisticsDisplay statisticsDisplay = new StatisticsDisplay(weatherData);
                                                                  
                                                                          weatherData.setMeasurements(0, 0, 0);
                                                                          weatherData.setMeasurements(1, 1, 1);
                                                                      }
                                                                  }
                                                                  
                                                                  CurrentConditionsDisplay.update: 0.0 0.0 0.0
                                                                  StatisticsDisplay.update: 0.0 0.0 0.0
                                                                  CurrentConditionsDisplay.update: 1.0 1.0 1.0
                                                                  StatisticsDisplay.update: 1.0 1.0 1.0
                                                                  

                                                                  # JDK

                                                                  • java.util.Observeropen in new window
                                                                  • java.util.EventListeneropen in new window
                                                                  • javax.servlet.http.HttpSessionBindingListeneropen in new window
                                                                  • RxJavaopen in new window
                                                                  编辑此页open in new window
                                                                  上次编辑于: 2022/5/21 13:08:59
                                                                  贡献者: yzqdev
                                                                  上一页
                                                                  /设计模式/设计模式 - 装饰.md
                                                                  下一页
                                                                  /设计模式/设计模式 - 解释器.md
                                                                  powered by vuepress-theme-home