• <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>

            emptysoul

              C++博客 :: 首頁 :: 聯系 :: 聚合  :: 管理
              25 Posts :: 0 Stories :: 23 Comments :: 0 Trackbacks

            常用鏈接

            留言簿(18)

            我參與的團隊

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            命令模式(Command)的目標是將一個請求封裝成一個對象,因此可以參數化多個客戶的不同請求,將請求排除,記錄請求日志,并支持撤消操作。 結構圖如下:


            其實現思想是將一個請求封裝到一個類中(Command),再提供接收對象(Receiver),最后Command命令由Invoker調用。

            以一個電燈開關為例,命令的執行、不執行相對于開關的打開、關閉操作,由開關發出命令,電燈接收命令,結構圖如下:


            實現代碼:
            //Light.h
            class Light  
            {
            public:
                Light();
                
            virtual ~Light();

                
            void TurnOn();
                
            void TurnOff();
            };

            //Light.cpp
            #include "stdafx.h"
            #include 
            "Light.h"
            #include 
            <iostream>

            using namespace std;

            Light::Light()
            {

            }

            Light::
            ~Light()
            {

            }

            void Light::TurnOn()
            {
                cout 
            << "電燈打開了" << endl;
            }

            void Light::TurnOff()
            {
                cout 
            << "電燈關閉了" << endl;
            }

            //Command.h
            class Command  
            {
            public:
                
            virtual ~Command();

                
            virtual void Execute() = 0;
                
            virtual void UnExecute() = 0;
            protected:
                Command();
            };

            //Command.cpp
            #include "stdafx.h"
            #include 
            "Command.h"

            Command::Command()
            {
                
            }

            Command::
            ~Command()
            {

            }

            //LightCommand.h
            #include "Command.h"

            class Light;
            class LightCommand : public Command
            {
            public:
                LightCommand(Light
            *);
                
            virtual ~LightCommand();

                
            void Execute();
                
            void UnExecute();
            private:
                Light
            * m_pLight;
            };

            //LightCommand.cpp
            #include "stdafx.h"
            #include 
            "LightCommand.h"
            #include 
            "Light.h"

            LightCommand::LightCommand(Light
            * pLight)
            {
                m_pLight 
            = pLight;
            }

            LightCommand::
            ~LightCommand()
            {
                
            if(m_pLight != NULL)
                {
                    delete m_pLight;
                    m_pLight 
            = NULL;
                }
            }

            void LightCommand::Execute()
            {
                m_pLight
            ->TurnOn();
            }

            void LightCommand::UnExecute()
            {
                m_pLight
            ->TurnOff();
            }

            //Switch.h
            class Command;
            class Switch  
            {
            public:
                Switch(Command
            *);
                
            virtual ~Switch();

                
            void Open();
                
            void Close();
            private:
                Command
            * m_pCommand;
            };

            //Switch.cpp
            #include "stdafx.h"
            #include 
            "Switch.h"
            #include 
            "Command.h"

            Switch::Switch(Command
            * pCommand)
            {
                m_pCommand 
            = pCommand;
            }

            Switch::
            ~Switch()
            {

            }

            void Switch::Open()
            {
                m_pCommand
            ->Execute();
            }

            void Switch::Close()
            {
                m_pCommand
            ->UnExecute();
            }

            //main.cpp
            #include "stdafx.h"
            #include 
            "Switch.h"
            #include 
            "Light.h"
            #include 
            "LightCommand.h"

            int main(int argc, char* argv[])
            {
                Light
            * pLight = new Light;
                Command
            * pCommand = new LightCommand(pLight);
                Switch
            * pSwitch = new Switch(pCommand);
                pSwitch
            ->Open();
                pSwitch
            ->Close();
                
            return 0;
            }

            最后輸出為:
            電燈打開了
            電燈關閉了
            posted on 2009-02-14 20:13 emptysoul 閱讀(2125) 評論(2)  編輯 收藏 引用

            Feedback

            # re: 設計模式-命令模式 2012-01-31 16:26 live
            寫的好 支持一下  回復  更多評論
              

            # re: 設計模式-命令模式[未登錄] 2012-06-16 16:11 Li
            創建命令的時候,需要知道具體的實現者,如何實現者不存在,或者運行中不小心被釋放掉了,這個時候還怎樣用命令呢?  回復  更多評論
              

            久久大香香蕉国产| 久久精品亚洲AV久久久无码| 久久国产乱子伦精品免费强| 国产午夜精品久久久久免费视 | 久久99精品久久久久久| 久久99国产精品成人欧美| 亚洲一级Av无码毛片久久精品| 国产成人久久精品激情| 日韩欧美亚洲综合久久影院Ds| 久久精品国产亚洲AV麻豆网站| 亚洲国产精品无码久久久久久曰| 亚洲愉拍99热成人精品热久久 | 综合久久国产九一剧情麻豆| 亚洲AV日韩精品久久久久久久| 国产巨作麻豆欧美亚洲综合久久 | 久久99精品九九九久久婷婷| 久久久久久久久久久精品尤物 | 久久精品a亚洲国产v高清不卡| 久久99精品久久久久久野外| 精品久久久无码21p发布| 久久久久久一区国产精品| 香蕉久久av一区二区三区| 一本久久免费视频| 久久精品国产精品亜洲毛片| 欧美精品一本久久男人的天堂| 无遮挡粉嫩小泬久久久久久久| 色青青草原桃花久久综合| 久久精品亚洲福利| 久久久久香蕉视频| 91久久香蕉国产熟女线看| 久久精品国产亚洲AV无码麻豆| 亚洲狠狠婷婷综合久久久久| 色天使久久综合网天天| 久久人人爽人人爽人人片AV麻豆 | 久久有码中文字幕| 欧美国产成人久久精品| 精品久久久久久无码国产| 欧洲性大片xxxxx久久久| 99久久伊人精品综合观看| 久久国产精品一区| 99久久国产热无码精品免费久久久久|