Java觀察者模式的深入瞭解
一、觀察者模式的定義和特點
觀察者模式的定義:
指多個對象間存在一對多的依賴關系,當一個對象的狀態發生改變時,所有依賴於它的對象都得到通知並被自動更新。這種模式有時又稱作發佈-訂閱模式、模型-視圖模式,它是對象行為型模式。
特點:
1.降低瞭目標與觀察者之間的耦合關系,兩者之間是抽象耦合關系。符合依賴倒置原則。
2.目標與觀察者之間建立瞭一套觸發機制。
二、觀察者模式的結構
實現觀察者模式時要註意具體目標對象和具體觀察者對象之間不能直接調用,否則將使兩者之間緊密耦合起來,這違反瞭面向對象的設計原則。 觀察者模式的主要角色如下。
Subject類:他把所有對觀察者對象的引用保存在一個聚合裡,每個主題都可以有任何數量的觀察者,抽象主題提供一個接口,可以增加和刪除任意的觀察者對象
observer類:抽象觀察者,為所有的具體觀察者定義一個接口,在得到主題的通知時更新自己
ConcreteSubject:具體主題,將有關狀態存入具體觀察者對象,在具體主題的內部狀態改變時,給所有登記過的的觀察者發出通知
ConcreteObserver:具體觀察者,實現抽象觀察者角色所要求的的更新接口,以便使本身的狀態與主題的狀態向協調
三、代碼實例
現在有一個需求,各網站需要訂閱天氣需求, 我們這邊要及時更新並發送天氣信息,且我們可以自由的註冊或者移除想要發送的網站,用觀察者模式實現。
如果我們用傳統的模式實現該案例,那麼會出現一個問題,就是如果我們要修改網站,那可能回去改動網站類的代碼,和我們操作更新數據的代碼,這不符合我們的開閉原則,因此我們采用觀察者模式去實現,因為他也是一種一對多的依賴關系,生活中這種案例多不勝數,例如訂閱雜志,等。
結構圖如下
代碼示例
抽象目標類Subject
package com.observerPattern.weatherCase;/** * @author wang * @version 1.0 * @packageName com.observerPattern.weatherCase * @className Subject * @date 2021/12/28 15:49 * @Description Subject抽象目標類,由具體的目標去實現 */public interface Subject package com.observerPattern.weatherCase; /** * @author wang * @version 1.0 * @packageName com.observerPattern.weatherCase * @className Subject * @date 2021/12/28 15:49 * @Description Subject抽象目標類,由具體的目標去實現 */ public interface Subject { /** * @Date 2021/12/28 16:20 * @Param * @param o * @Return void * @MetodName registerObserver * @Author wang * @Description 註冊觀察者方法 */ void registerObserver(Observer o); /** * @Date 2021/12/28 16:20 * @Param * @param o * @Return void * @MetodName removeObserver * @Author wang * @Description 移除觀察者 */ void removeObserver(Observer o); /** * @Date 2021/12/28 16:20 * @Param * @Return void * @MetodName notifyObservers * @Author wang * @Description 通知觀察者 */ void notifyObservers(); }
具體目標WeatherDate類
package com.observerPattern.weatherCase; import java.util.ArrayList; /** * @author wang * @version 1.0 * @packageName com.observerPattern.weatherCase * @className WeatherDate * @date 2021/12/28 16:00 * @Description 包含最新的天氣數據,是具體的目標,實現瞭抽象目標subject * 該類含有觀察者集合,使用ArrayLis集合管理. * 當數據有更新時,就主動的調用ArrayList集合通知各個觀察者 * */ public class WeatherDate implements Subject{ private float temperature; private float pressure; private float humidity; private ArrayList<Observer> observers; /** * @Date 2021/12/28 16:10 * @Param * @Return null * @MetodName WeatherDate * @Author wang * @Description 初始化觀察者集合 */ public WeatherDate() { this.observers = new ArrayList<Observer>(); } public float getTemperature() { return temperature; } public float getPressure() { return pressure; } public float getHumidity() { return humidity; } /** * @Date 2021/12/28 16:10 * @Param * @Return void * @MetodName dateChange * @Author wang * @Description 調用通知方法,將更新後的數據推送至各個觀察者 */ public void dateChange() { notifyObservers(); } /** * @Date 2021/12/28 16:11 * @Param * @param temperature * @param pressure * @param humidity * @Return void * @MetodName setDate * @Author wang * @Description 更新數據 */ public void setDate(float temperature,float pressure,float humidity) { this.temperature = temperature; this.pressure = pressure; this.humidity = humidity; dateChange(); } /** * @Date 2021/12/28 16:11 * @Param * @param o * @Return void * @MetodName registerObserver * @Author wang * @Description z註冊一個觀察者 */ @Override public void registerObserver(Observer o) { observers.add(o); } /** * @Date 2021/12/28 16:11 * @Param * @param o * @Return void * @MetodName removeObserver * @Author wang * @Description 移除一個觀察者 */ @Override public void removeObserver(Observer o) { if(observers.contains(o)) { observers.remove(o); } } /** * @Date 2021/12/28 16:12 * @Param * @Return void * @MetodName notifyObservers * @Author wang * @Description 通知觀察者 */ @Override public void notifyObservers() { for(int i = 0;i< observers.size();i++) { observers.get(i).update(this.temperature,this.pressure,this.humidity); } } }
抽象觀察者Observer:
package com.observerPattern.weatherCase; /** * @author wang * @version 1.0 * @packageName com.observerPattern.weatherCase * @className Observer * @date 2021/12/28 15:50 * @Description 觀察者接口,方法更新溫度,壓力,濕度,由具體的觀察者實現 */ public interface Observer { /** * @Date 2021/12/28 16:18 * @Param * @param temperature * @param pressure * @param humidity * @Return void * @MetodName update * @Author wang * @Description */ void update(float temperature,float pressure,float humidity); }
具體觀察者1
package com.observerPattern.weatherCase; /** * @author wang * @version 1.0 * @packageName com.observerPattern.weatherCase * @className CurrentCondition * @date 2021/12/28 15:54 * @Description 具體的一個觀察者類,表示當前天氣情況,實現觀察者接口 */ public class CurrentCondition implements Observer{ private float temperature; private float pressure; private float humidity; /** * @Date 2021/12/28 15:58 * @Param * @param temperature * @param pressure * @param humidity * @Return void * @MetodName update * @Author wang * @Description該方法將更新後的數據推送至該觀察者,觀察者打印 */ @Override public void update(float temperature, float pressure, float humidity) { this.temperature = temperature; this.pressure = pressure; this.humidity = humidity; display(); } /** * @Date 2021/12/28 15:59 * @Param * @Return void * @MetodName display * @Author wang * @Description 該方法顯示更新的數據 */ public void display() { System.out.println("測試顯示當前氣溫:" + temperature + "度"); System.out.println("測試顯示當前壓力:" + pressure + "帕"); System.out.println("測試顯示當前濕度:" + humidity + "Rh"); } }
具體觀察者2:
package com.observerPattern.weatherCase; /** * @author wang * @version 1.0 * @packageName com.observerPattern.weatherCase * @className SinaNet * @date 2021/12/28 16:21 * @Description 新浪網站作為一個觀察者 */ public class SinaNet implements Observer{ private float temperature; private float pressure; private float humidity; /** * @Date 2021/12/28 15:58 * @Param * @param temperature * @param pressure * @param humidity * @Return void * @MetodName update * @Author wang * @Description該方法將更新後的數據推送至該觀察者,觀察者打印 */ @Override public void update(float temperature, float pressure, float humidity) { this.temperature = temperature; this.pressure = pressure; this.humidity = humidity; display(); } /** * @Date 2021/12/28 15:59 * @Param * @Return void * @MetodName display * @Author wang * @Description 該方法顯示更新的數據 */ public void display() { System.out.println("=======新浪網站======="); System.out.println("新浪顯示當前氣溫:" + temperature + "度"); System.out.println("新浪顯示當前壓力:" + pressure + "帕"); System.out.println("新浪顯示當前濕度:" + humidity + "Rh"); } }
客戶端測試類
package com.observerPattern.weatherCase; /** * @author wang * @version 1.0 * @packageName com.observerPattern.weatherCase * @className ClientTest * @date 2021/12/28 16:12 * @Description 客戶端測試代碼,測試觀察者模式 */ public class ClientTest { public static void main(String[] args) { //創建一個weatherDate具體目標 WeatherDate weatherDate = new WeatherDate(); //創建一個觀察者 CurrentCondition currentCondition = new CurrentCondition(); //註冊一個觀察者 weatherDate.registerObserver(currentCondition); //註冊新浪 SinaNet sinaNet = new SinaNet(); weatherDate.registerObserver(sinaNet); //測試更新 System.out.println("通知給各觀察者"); weatherDate.setDate(3,65,12); //測試移除 weatherDate.removeObserver(currentCondition); System.out.println("========================"); System.out.println("第二次更新"); weatherDate.setDate(6,88,16); } } /* 通知給各觀察者 測試顯示當前氣溫:3.0度 測試顯示當前壓力:65.0帕 測試顯示當前濕度:12.0Rh =======新浪網站======= 新浪顯示當前氣溫:3.0度 新浪顯示當前壓力:65.0帕 新浪顯示當前濕度:12.0Rh ======================== 第二次更新 =======新浪網站======= 新浪顯示當前氣溫:6.0度 新浪顯示當前壓力:88.0帕 新浪顯示當前濕度:16.0Rh */
這種好處是我們如果有新的網站的加入,那麼直接添加一個觀察者類即可,不用修改代碼
以及刪除,註冊都是獨立開來的。
總結
本篇文章就到這裡瞭,希望能夠給你帶來幫助,也希望您能夠多多關註WalkonNet的更多內容!