青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆-167  評論-8  文章-0  trackbacks-0
1. 解決的問題:
   假如現在要編寫一個天氣預報的公布欄, 公布欄有兩種顯示方式, 一種是圖像方式顯示, 一種是表格形式顯示.
 
2. 問題分析:
   應該根據數據與現實分離的原則將天氣預報數據和現實形式分別封裝起來,
   今后可能增加其他的顯示形式;
   天氣預報數據發生變化后,需要對所有的顯示形式進行更新.
 
3. UML圖與代碼實現:
 1)用Push的方式更新Observer數據, 通過Subject對Observer進行注冊:
 
  1. //這個例子中WeatherData就是Subject, 而WeatherView則是Observer,  
  2. //這里WeatherView中沒有包含到WeatherData的引用,  
  3. //因此這里是Subject用push的方法向Observer發送數據;  
  4. //并且注冊和反注冊Observer的時候都是由Subject(WeatherData)執行的  
  5.   
  6. #include <iostream>  
  7. #include <vector>  
  8. #include <algorithm>  
  9.   
  10. using namespace std;  
  11.   
  12. class WeatherData;  
  13.   
  14. class WeatherView  
  15. {  
  16. public:  
  17.     void Update(int temp, int hum)  
  18.     {  
  19.         temperature = temp;  
  20.         humidity = hum;  
  21.     };  
  22.     virtual void Display()  
  23.     {  
  24.         cout << "temperature = " << temperature << ", humidity = " << humidity << endl;  
  25.     }  
  26.   
  27. private:  
  28.   
  29.     int temperature;  
  30.     int humidity;  
  31. };  
  32.   
  33. class GraphicView: public WeatherView  
  34. {  
  35. public:  
  36.     void Display()  
  37.     {  
  38.         cout << "====--Weather Report With Graphic Format--===="<< endl;  
  39.         WeatherView::Display();  
  40.     }  
  41. };  
  42.   
  43. class TableView: public WeatherView  
  44. {  
  45. public:  
  46.     void Display()  
  47.     {  
  48.         cout << "====--Weather Report With Table Format--===="<< endl;  
  49.         WeatherView::Display();  
  50.     }  
  51. };  
  52.   
  53. class WeatherData  
  54. {  
  55. public:  
  56.     void SetWeahterData(int temp, int hum)  
  57.     {  
  58.         temperature = temp;  
  59.         humidity = hum;  
  60.         NotifyObservcer();  
  61.     }  
  62.   
  63.     void RegisterObserver(WeatherView* obs)  
  64.     {  
  65.         obsList.push_back(obs);  
  66.     }  
  67.   
  68.     void RemoveObserver(WeatherView* obs)  
  69.     {  
  70.         vector<WeatherView*>::iterator it;  
  71.         it = find(obsList.begin(), obsList.end(), obs);  
  72.         if (it != obsList.end())  
  73.             obsList.erase(it);  
  74.     }  
  75.   
  76. private:  
  77.     vector<WeatherView*> obsList;  
  78.     int temperature;  
  79.     int humidity;  
  80.     void NotifyObservcer()  
  81.     {  
  82.        vector<WeatherView*>::iterator it;  
  83.        for(it = obsList.begin(); it < obsList.end(); it++)  
  84.        {  
  85.            (*it)->Update(temperature, humidity);  
  86.        }  
  87.     }  
  88. };  
  89.   
  90.   
  91. int main()  
  92. {  
  93.     WeatherData *wd = new WeatherData();  
  94.     GraphicView *gv = new GraphicView();  
  95.     TableView *tv = new TableView();  
  96.   
  97.     wd->RegisterObserver(gv);  
  98.     wd->RegisterObserver(tv);  
  99.     wd->SetWeahterData(23,45);  
  100.     gv->Display();  
  101.     tv->Display();  
  102.   
  103.     wd->RemoveObserver(gv);  
  104.     wd->SetWeahterData(67,89);  
  105.     gv->Display();  
  106.     tv->Display();  
  107.   
  108.     return 0;  
  109. }  
2)用Pull的方式更新Observer數據, Observer自己進行注冊:
  1. #ifndef WEATHERDATA_HPP_INCLUDED  
  2. #define WEATHERDATA_HPP_INCLUDED  
  3. #include <iostream>  
  4. #include <vector>  
  5.   
  6. #include "WeatherView.hpp"  
  7.   
  8. class WeatherData  
  9. {  
  10. public:  
  11.     void SetWeahterData(int temp, int hum)  
  12.     {  
  13.         temperature = temp;  
  14.         humidity = hum;  
  15.         NotifyObservcer();  
  16.     }  
  17.   
  18.     int GetTemperature()  
  19.     {  
  20.         return temperature;  
  21.     }  
  22.   
  23.     int GetHumidty()  
  24.     {  
  25.         return humidity;  
  26.     }  
  27.   
  28.     void RegisterObserver(WeatherView* obs);  
  29.     void RemoveObserver(WeatherView* obs);  
  30.   
  31. private:  
  32.     vector<WeatherView*> obsList;  
  33.     int temperature;  
  34.     int humidity;  
  35.     void NotifyObservcer();  
  36. };  
  37.   
  38. #endif  
 
  1. #ifndef WEATHERVIEW_HPP_INCLUDED  
  2. #define WEATHERVIEW_HPP_INCLUDED  
  3.   
  4. #include <iostream>  
  5. #include <vector>  
  6. #include <algorithm>  
  7.   
  8.   
  9. class WeatherData;  
  10.   
  11. using namespace std;  
  12.   
  13. class WeatherView  
  14. {  
  15. public:  
  16.     WeatherView(WeatherData* wd);  
  17.   
  18.     void Update();  
  19.     void Register();  
  20.     void Unregister();  
  21.   
  22.     virtual void Display()  
  23.     {  
  24.         cout << "temperature = " << temperature << ", humidity = " << humidity << endl;  
  25.     }  
  26.   
  27. private:  
  28.     WeatherData* wd;  
  29.     int temperature;  
  30.     int humidity;  
  31. };  
  32.   
  33. class GraphicView: public WeatherView  
  34. {  
  35. public:  
  36.     GraphicView(WeatherData* wd);  
  37.     void Display()  
  38.     {  
  39.         cout << "====--Weather Report With Graphic Format--===="<< endl;  
  40.         WeatherView::Display();  
  41.     }  
  42. };  
  43.   
  44. class TableView: public WeatherView  
  45. {  
  46. public:  
  47.     TableView(WeatherData* wd);  
  48.     void Display()  
  49.     {  
  50.         cout << "====--Weather Report With Table Format--===="<< endl;  
  51.         WeatherView::Display();  
  52.     }  
  53. };  
  54.   
  55. #endif  
 
  1. //這個例子中WeatherData就是Subject, 而WeatherView則是Observer,  
  2. //這里WeatherView中有一個包含到WeatherData的指針,  
  3. //因此這里是Observer用pull的方法主動向Observer索取數據;  
  4. //并且注冊和反注冊都是Observer自己執行的  
  5. #include <iostream>  
  6. #include <vector>  
  7. #include <algorithm>  
  8. #include "WeatherView.hpp"  
  9. #include "WeatherData.hpp"  
  10.   
  11. void WeatherData::RegisterObserver(WeatherView* obs)  
  12. {  
  13.     obsList.push_back(obs);  
  14. }  
  15.   
  16. void WeatherData::RemoveObserver(WeatherView* obs)  
  17. {  
  18.     vector<WeatherView*>::iterator it;  
  19.     it = find(obsList.begin(), obsList.end(), obs);  
  20.     if (it != obsList.end())  
  21.         obsList.erase(it);  
  22. }  
  23.   
  24. void WeatherData::NotifyObservcer()  
  25. {  
  26.    vector<WeatherView*>::iterator it;  
  27.    for(it = obsList.begin(); it < obsList.end(); it++)  
  28.    {  
  29.        (*it)->Update();  
  30.    }  
  31. }  
  32.   
  33.   
  34. WeatherView::WeatherView(WeatherData* pwd)  
  35. {  
  36.     wd = pwd;  
  37. }  
  38.   
  39. void WeatherView::Update()  
  40. {  
  41.     temperature = wd->GetTemperature();  
  42.     humidity = wd->GetHumidty();  
  43. };  
  44.   
  45. void WeatherView::Register()  
  46. {  
  47.     wd->RegisterObserver(this);  
  48. };  
  49.   
  50. void WeatherView::Unregister()  
  51. {  
  52.     wd->RemoveObserver(this);  
  53. };  
  54.   
  55. GraphicView::GraphicView(WeatherData* pwd) : WeatherView(pwd)  
  56. {  
  57.   
  58. }  
  59.   
  60. TableView::TableView(WeatherData* pwd) : WeatherView(pwd)  
  61. {  
  62.   
  63. }  
  64. int main()  
  65. {  
  66.     WeatherData *wd = new WeatherData();  
  67.     GraphicView *gv = new GraphicView(wd);  
  68.     gv->Register();  
  69.     TableView *tv = new TableView(wd);  
  70.     tv->Register();  
  71.   
  72.     wd->SetWeahterData(23,45);  
  73.     gv->Display();  
  74.     tv->Display();  
  75.   
  76.     gv->Unregister();  
  77.     wd->SetWeahterData(67,89);  
  78.     gv->Display();  
  79.     tv->Display();  
  80.   
  81.     return 0;  
  82. }  
  
上面兩種實現的執行結果如下:
  1. ====--Weather Report With Graphic Format--====  
  2. temperature = 23, humidity = 45  
  3. ====--Weather Report With Table Format--====  
  4. temperature = 23, humidity = 45  
  5. ====--Weather Report With Graphic Format--====  
  6. temperature = 23, humidity = 45  
  7. ====--Weather Report With Table Format--====  
  8. temperature = 67, humidity = 89  
4. Push還是Pull?
對于上面的例子, Observer中的數據是從Subject中一次性全部更新的(temperature 和 humidity), 這種更新數據的方式便是push;然而如果WeatherData中的數據量非常大, 而有些Observer并不需要所有的數據, 比如現在要新增兩個顯示方式,一個是只顯示溫度,而另一個則只顯示濕度, 這樣的話就沒有必要讓所有的Observer都得到所有的數據. 最好的方式是Observer能根據自己的需要從Subject中去取得數據,這種更新數據的方式便是Pull. Observer模式中Push和Pull兩種設計方法體現在具體的程序中就是Observer中的Update()接口參數不同, 對于Push模式, Update()接口的參數通常就是需要Push的那些數據,比如這里的溫度和濕度; 對于Pull模式, Update()的參數是Subject的一個引用, 然后Subject提供一些數據接口,由Observer通過這些接口自己取得所需要的數據.
 
5. 總結:
   1. Strategy 模式定義:
      定義對象間的一種一對多的依賴關系,當一個對象的狀態發生改變時,所有依賴于它的對象都得到通知并被自動更新.
 
   2. 體現的設計原則:
  • 將數據與現實分別封裝;
  • 多使用組合,少使用繼承;
  • 面向接口編程,而不面向實現編程;
   3. UML圖:
 
 
   4. 要點:
  • Strategy 基類需要定義出可供Client使用的一些算法接口;
  • 可以隨時根據需要增加 Strategy 而不會影響到Client;
  • Client 里面需要包含對 Strategy 的引用;
  • Client 可以隨時更換 Strategy;
6. 理解:
  • Observer模式是解決對象之間數據傳遞問題的一種模式;
  • Observer的注冊可以由Subject執行也可以由Observer自己執行;
  • 和Strategy模式的比較: 
    1) Observer模式中Observer 中定義了 Update()接口供 Subject調用; 而Strategy模式中,Strategy定義了AlgrithmInterface()供Client調用;
    2) Observer模式中Subject和Observer是一對多的關系, 因此Subject是一次調用n個Observer的Update()接口;而Strategy模式中Client與Strategy之間是一對一的關系, Client 就是調用指定的那個Strategy的AlgrithmInterface();
    3) 也正因為這種對應關系的不同, 在Observer模式中, Subject可以Register或者Remove某個Observer, 而Strategy模式中通常只是set某個Strategy

    轉自:http://blog.csdn.net/minico/article/details/5471100
posted on 2012-10-30 17:16 老馬驛站 閱讀(400) 評論(0)  編輯 收藏 引用 所屬分類: Design pattern
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产日韩三区| 欧美亚洲网站| 亚洲激情电影在线| 欧美本精品男人aⅴ天堂| 另类欧美日韩国产在线| 欧美在线观看天堂一区二区三区| 亚洲婷婷综合久久一本伊一区| 99精品99| 亚洲午夜成aⅴ人片| 亚洲与欧洲av电影| 欧美一区二区三区在线看 | 欧美午夜视频网站| 欧美午夜电影完整版| 亚洲精品视频在线观看免费| 亚洲日韩欧美视频| 99在线热播精品免费| 亚洲一区二区在线免费观看| 午夜久久tv| 美女91精品| 最新亚洲视频| 亚洲手机在线| 久久久久国产精品午夜一区| 欧美国产视频在线观看| 欧美色视频日本高清在线观看| 亚洲精品自在久久| 亚洲午夜电影在线观看| 久久爱另类一区二区小说| 欧美大成色www永久网站婷| 国产精品一二三视频| 影音先锋日韩资源| 亚洲欧美日韩精品久久亚洲区 | 亚洲裸体在线观看| 亚洲欧美日韩视频一区| 欧美好骚综合网| 国产精品99久久久久久久久久久久 | 国语自产在线不卡| 一区二区三区 在线观看视频| 午夜精品福利视频| 欧美国产精品一区| 欧美亚洲一区在线| 欧美日本中文字幕| 国产一区二区三区电影在线观看| 亚洲老司机av| 麻豆九一精品爱看视频在线观看免费 | 国产嫩草影院久久久久| 亚洲国产91| 久久精品官网| 亚洲精品国产精品国自产在线| 久久精品观看| 国产精品女同互慰在线看| 国产在线不卡视频| 99国产精品自拍| 久久久亚洲人| 99这里有精品| 理论片一区二区在线| 国产精品影音先锋| 在线电影国产精品| 欧美一区二区三区的| 亚洲国产日韩在线| 久久精品国产第一区二区三区最新章节 | 亚洲视频在线观看| 亚洲国产综合在线| 久久综合给合| 狠狠综合久久| 久久精品30| 亚洲欧美乱综合| 欧美午夜精品久久久久久浪潮| 亚洲国产综合在线看不卡| 久久一区免费| 久久国产免费| 国模吧视频一区| 久久久久久免费| 欧美一区深夜视频| 国产乱人伦精品一区二区| 一区二区三区视频免费在线观看| 欧美电影免费观看| 久久久天天操| 在线观看91精品国产麻豆| 欧美一区二区三区在线视频| 中文国产成人精品| 国产精品久久影院| 午夜一区在线| 欧美一区二区三区久久精品 | 亚洲一区二区三区三| 国产精品美女一区二区在线观看| 亚洲欧美一区二区三区极速播放| 亚洲在线黄色| 在线成人免费观看| 亚洲美女视频网| 国产精品v欧美精品v日韩精品| 免费亚洲电影在线| 亚洲美女网站| 亚洲第一区中文99精品| 欧美成人午夜激情视频| 亚洲一区精品电影| 欧美一区三区三区高中清蜜桃| 在线成人中文字幕| 日韩视频国产视频| 国产一区二区三区黄视频| 欧美99久久| 欧美激情一区二区三区全黄| 亚洲综合激情| 久久亚洲免费| 亚洲欧美中日韩| 久久理论片午夜琪琪电影网| 亚洲视频综合在线| 久久躁日日躁aaaaxxxx| 亚洲欧美日韩一区二区三区在线观看 | 亚洲成人中文| 国产精品网站在线播放| 亚洲第一偷拍| 国产在线不卡精品| 在线一区二区日韩| 亚洲国产精品一区二区www在线| 正在播放欧美视频| 在线欧美福利| 亚洲午夜成aⅴ人片| 亚洲人成在线播放| 欧美在线亚洲| 西瓜成人精品人成网站| 欧美另类视频| 欧美国产高潮xxxx1819| 国产亚洲一区二区三区在线播放| 日韩午夜激情| 999亚洲国产精| 久久亚洲一区二区三区四区| 欧美一区二区私人影院日本| 欧美日韩一区精品| 欧美黄色一级视频| 激情欧美丁香| 欧美一区2区三区4区公司二百| 国产精品99久久久久久宅男| 嫩草国产精品入口| 欧美jizzhd精品欧美巨大免费| 韩国av一区二区三区四区| 亚洲欧美日本国产有色| 午夜精品国产更新| 国产精品美女www爽爽爽视频| 亚洲精品国产精品国自产观看 | 欧美日韩天天操| 欧美高清视频一区二区| 一区二区三区亚洲| 久久人人爽人人爽爽久久| 久久亚洲精品网站| 精品动漫一区| 麻豆国产精品777777在线| 久久综合色88| 在线日韩av片| 亚洲欧美久久| 久久精品成人| 激情综合色综合久久| 久久免费视频一区| 亚洲国产精品久久人人爱蜜臀| 亚洲精品美女| 欧美日韩日日夜夜| 亚洲午夜久久久| 久久精品在线| 在线观看亚洲专区| 欧美jizz19hd性欧美| 亚洲麻豆av| 亚洲欧美日韩国产综合在线| 欧美午夜理伦三级在线观看| 亚洲欧美日本另类| 麻豆精品在线视频| 99国产精品国产精品久久| 欧美色区777第一页| 午夜老司机精品| 美女网站在线免费欧美精品| 99精品热视频只有精品10| 欧美一级专区免费大片| 激情综合自拍| 欧美日韩精品在线播放| 亚洲欧美日韩精品久久亚洲区| 久久精品主播| 日韩午夜一区| 国产亚洲欧洲一区高清在线观看| 久久一区中文字幕| 日韩一级精品视频在线观看| 性伦欧美刺激片在线观看| 亚洲电影专区| 欧美天天在线| 久久精品亚洲国产奇米99| 亚洲精品乱码久久久久久蜜桃91| 亚洲欧美日韩在线综合| 亚洲国产欧美一区| 国产精品私房写真福利视频| 看欧美日韩国产| 性色av一区二区三区在线观看| 亚洲国产mv| 久久久久国内| 亚洲午夜三级在线| 亚洲二区在线视频| 国产精品网站在线观看| 欧美大片免费看| 欧美一区二区三区日韩| 一本色道久久精品| 欧美激情国产日韩| 麻豆精品传媒视频| 久久精品一级爱片| 亚洲欧美日韩成人|