C++編程語言中的應用方式比較靈活,我們可以通過各種模式來實現特定的功能。比如今天為大家介紹的C++ Memento模式,就是一個非常有用的應用模式,希望大家可以從中獲得一些幫助。
C++ Memento模式代碼示例:
- #include< iostream>
- #include< string>
- using namespace std;
- typedef string states;
- class Memento;
- class Orininator
- {
- public:
- Orininator(){m_st="";m_mt=0;};
- Orininator(const states& st){m_st=st;m_mt=0;};
- ~Orininator(){};
- Memento* CreateMemento();
- void SetMemento(Memento* men){};
- void RestoretoMen(Memento* mt);
- states GetState(){return m_st;};
- void SetState(const states& sdt){m_st=sdt;}
- void PrintState(){cout< this->m_st< < ".."< < endl;}
- private:
- states m_st;
- Memento* m_mt;
- };
- class Memento
- {
- private:
- friend class Orininator;//友元
- Memento(){};
- Memento(const states& st){m_st=st;};
- ~Memento(){};
- void SetState(const states& std){m_st=std;};
- states GetState(){return m_st;};
- private:
- states m_st;
- };
- Memento* Orininator::CreateMemento()
- {
- return new Memento(m_st);//合理的應用構造函數;
- }
- void Orininator::RestoretoMen(Memento* mt)
- {
- this->m_st=mt->GetState();
- }
- void main()
- {
- Orininator* Ori=new Orininator();
- Ori->SetState("old");
- Ori->PrintState();
- Memento* m=Ori->CreateMemento();
- Ori->SetState("new");
- Ori->PrintState();
- Ori->RestoretoMen(m);
- Ori->PrintState();
- }
以上就是對C++ Memento模式的相關介紹。