設計模式學習——觀察者模式(Observer Pattern)

来源:http://www.cnblogs.com/chinxi/archive/2017/08/20/7401462.html
-Advertisement-
Play Games

有個報社,在有新報紙的時候,會給所有的訂閱者發送推送。 ...


有個報社,在有新報紙的時候,會給所有的訂閱者發送推送。

 

 1  ///
 2  /// @file    Observer.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-20 19:54:38
 5  ///
 6 
 7 #ifndef __OBSERVER_H__
 8 #define __OBSERVER_H__
 9 
10 #include <iostream>
11  
12 namespace marrs{
13  
14 using std::cout;
15 using std::endl;
16 using std::string;
17 
18 class Observer
19 {
20     public:
21         virtual ~Observer(){}
22     public:
23         virtual void Update(string & str_message) = 0;
24     public:
25         virtual string GetName() = 0;
26         virtual string GetMsg() = 0;
27     protected:
28         string _str_name;
29         string _str_message;
30 };
31 
32 }
33 
34 #endif // __OBSERVER_H__
 1  ///
 2  /// @file    Observerable.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-20 19:48:42
 5  ///
 6 
 7 #ifndef __OBSERVERABLE_H__
 8 #define __OBSERVERABLE_H__
 9 
10 #include <iostream>
11 #include <vector>
12 
13 namespace marrs{
14  
15 using std::cout;
16 using std::endl;
17 using std::string; 
18 using std::vector;
19 
20 class Observer;
21 typedef vector<Observer *> ObserverCache;
22 
23 class Observerable
24 {
25     public:
26         virtual ~Observerable(){}
27 
28     public:
29         virtual void AddObserver(Observer * observer) = 0;
30         virtual void DelObserver(Observer * observer) = 0;
31         virtual void NotifyObserver(string str_message) = 0;
32     protected:
33         ObserverCache _observer;
34 };
35  
36 }
37 
38 #endif // __OBSERVERABLE_H__

 

 

 1  ///
 2  /// @file    NewspaperOffice.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-20 20:07:02
 5  ///
 6 
 7 #ifndef __NEWSPAPEROFFICE_H__
 8 #define __NEWSPAPEROFFICE_H__
 9 
10 #include "Observerable.h"
11  
12 namespace marrs{
13  
14 class NewspaperOffice
15 : public Observerable
16 {
17     public:
18         void AddObserver(Observer * observer);
19         void DelObserver(Observer * observer);
20         void NotifyObserver(string str_message);
21 };
22  
23 }
24 
25 #endif // __NEWSPAPEROFFICE_H__
 1  ///
 2  /// @file    NewspaperOffice.cc
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-20 20:19:15
 5  ///
 6  
 7 #include "NewspaperOffice.h"
 8 #include "Observer.h"
 9 #include <algorithm>
10 
11 namespace marrs{
12 
13 void NewspaperOffice::AddObserver(Observer * observer)
14 {
15     cout << "add a new Reader" << endl;
16     cout << "name : " << observer->GetName() << endl;
17     _observer.push_back(observer);
18 }
19 
20 void NewspaperOffice::DelObserver(Observer * observer)
21 {
22     cout << "del a Reader" << endl;
23     cout << "name : " << observer->GetName() << endl;
24     _observer.erase(remove(_observer.begin(), _observer.end(), observer));
25 }
26 
27 void NewspaperOffice::NotifyObserver(string str_message)
28 {
29     ObserverCache::iterator it_Observer;
30     it_Observer = _observer.begin();
31     for(; it_Observer != _observer.end(); ++it_Observer)
32     {
33         (*it_Observer)->Update(str_message);
34     }
35 }
36  
37 }

 

 

 1  ///
 2  /// @file    Readers.h
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-20 20:43:46
 5  ///
 6 
 7 #ifndef __READERS_H__
 8 #define __READERS_H__
 9 
10 #include "Observer.h"
11  
12 namespace marrs{
13  
14 class Readers
15 : public Observer
16 {
17     public:
18         Readers(string str_name);
19     public:
20         void Update(string & str_message);
21         string GetName();
22         string GetMsg();
23 };
24 
25 }
26 
27 #endif // __READERS_H__
 1  ///
 2  /// @file    Readers.cc
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-20 20:46:08
 5  ///
 6  
 7 #include "Readers.h"
 8 
 9 namespace marrs{
10 
11 Readers::Readers(string str_name)
12 {
13     _str_name = str_name;
14     _str_message = "None";
15 }
16 
17 void Readers::Update(string & str_message)
18 {
19     cout << "my name : " << _str_name << endl;
20     cout << "recv msg: " << str_message << endl;
21     _str_message = str_message;
22 }
23 
24 string Readers::GetName()
25 {
26     return _str_name;
27 }
28 
29 string Readers::GetMsg()
30 {
31     return _str_message;
32 }
33  
34 }

 

 

 1  ///
 2  /// @file    Main.cc
 3  /// @author  marrs([email protected])
 4  /// @date    2017-08-20 20:50:17
 5  ///
 6  
 7 #include "Readers.h"
 8 #include "NewspaperOffice.h"
 9 
10 using namespace marrs;
11 
12 int main()
13 {
14     NewspaperOffice * newspaperoffice = new NewspaperOffice;
15     Readers * reader1 = new Readers("zhang san");
16     Readers * reader2 = new Readers("li si");
17     Readers * reader3 = new Readers("wang wu");
18     Readers * reader4 = new Readers("zhao liu");
19 
20     newspaperoffice->AddObserver(reader1);
21     newspaperoffice->AddObserver(reader2);
22     newspaperoffice->NotifyObserver("first msg");
23     cout << "zhang san   msg: " << reader1->GetMsg() << endl;
24     cout << "li si       msg: " << reader2->GetMsg() << endl;
25     cout << "wang wu     msg: " << reader3->GetMsg() << endl;
26     cout << "zhao liu    msg: " << reader4->GetMsg() << endl;
27 
28 
29     newspaperoffice->AddObserver(reader3);
30     newspaperoffice->DelObserver(reader1);
31     newspaperoffice->NotifyObserver("second msg");
32     cout << "zhang san   msg: " << reader1->GetMsg() << endl;
33     cout << "li si       msg: " << reader2->GetMsg() << endl;
34     cout << "wang wu     msg: " << reader3->GetMsg() << endl;
35     cout << "zhao liu    msg: " << reader4->GetMsg() << endl;
36 
37 
38 
39     delete newspaperoffice;
40     delete reader1;
41     delete reader2;
42     delete reader3;
43     delete reader4;
44 
45     return 0;
46 }

 

 

[ccx@ubuntu ~/object-oriented/Observer_Pattern]$>g++ * -o main.exe
[ccx@ubuntu ~/object-oriented/Observer_Pattern]$>./main.exe 
add a new Reader
name : zhang san
add a new Reader
name : li si
my name : zhang san
recv msg: first msg
my name : li si
recv msg: first msg
zhang san   msg: first msg
li si       msg: first msg
wang wu     msg: None
zhao liu    msg: None
add a new Reader
name : wang wu
del a Reader
name : zhang san
my name : li si
recv msg: second msg
my name : wang wu
recv msg: second msg
zhang san   msg: first msg
li si       msg: second msg
wang wu     msg: second msg
zhao liu    msg: None

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • @為什麼需要BaseServlet? 我們知道一個POST或者GET提交對應著一個Servlet, 無數的提交會讓Servlet頁面增加,我們希望一個Servlet就能處理很多提交的請求。 @BaseServlet 是一個繼承了HttpServlet的普通類,並不是Servlet類,所以不需要在we ...
  • 1、創建maven項目 版本:Java 1.8 Mysql 6.0 勾選 Create a simple project (不使用骨架) 註意選擇 maven-archetype-webapp 2)New Maven project 頁面 GroupID 是項目組織唯一的標識符,實際對應java的包 ...
  • 消息隊列是在樂視這邊非常普遍使用的技術。在我們部門內部,不同的項目使用的消息隊列實現也不一樣。下麵是支付系統的流轉圖(部門兄弟畫的,借用一下): 從圖中可以看到,裡面用到了kafka消息隊列。作用是做資料庫分庫分表後的聚合,非同步彙總到一張總表。裡面也用到了redis,用來處理高併發下的訂單重覆提交。 ...
  • SpringMVC是用步驟: - 加入 jar 包 – 在 web.xml 中配置 DispatcherServlet – 加入 Spring MVC 的配置文件 – 編寫處理請求的處理器,並標識為處理器 – 編寫視圖 SpringMVC具體使用步驟:1、在eclipse中創建一個動態web項目;1 ...
  • 一、引言 前兩天休息日在網上打QQ鬥地主,每盤結束後騰訊游戲平臺會自動計算輸贏的歡樂豆,嗯?挺好的,平時在面對面玩鬥地主時,一盤游戲結束後,我們需要瞭解每個人的出牌狀況,然後算出來輸贏。現在有了游戲平臺,玩家之間計算輸贏這個操作交給了游戲平臺,我們不再需要瞭解每個人的出牌狀況。在軟體設計中,我們將解 ...
  • 定義(From百度百科): Interpreter(解釋器)模式是一種特殊的設計模式,它建立一個解釋器(Interpreter),對於特定的電腦程式設計語言,用來解釋預先定義的文法。簡單地說,Interpreter模式是一種簡單的語法解釋器構架。 UML類圖: 抽象具體代碼: 模塊說明:Abstr ...
  • HP-Socket 是一套通用的高性能 TCP/UDP/HTTP 通信框架,包含服務端組件、客戶端組件和 Agent 組件,廣泛適用於各種不同應用場景的 TCP/UDP/HTTP 通信系統,提供 C/C++、C#、Delphi、E(易語言)、Java、Python 等編程語言介面。HP-Socket... ...
  • 今天有點時間,就寫下博客吧。 其實我主要想說的是,學了java這個編程語言。自己生活當中看到了一些事物,人,都會不由自主地往這方面聯想。 比如最開始學編程的時候,也忘記是哪個老師說過的,他說的是java就是一門面向對象的語言,拿個簡單的例子來說吧。 我們假如想要建造一棟房子,假設現在需要三種材料,沙 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...