程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++ Memento模式應用法則

C++ Memento模式應用法則

編輯:C++入門知識

C++編程語言中的應用方式比較靈活,我們可以通過各種模式來實現特定的功能。比如今天為大家介紹的C++ Memento模式,就是一個非常有用的應用模式,希望大家可以從中獲得一些幫助。

C++ Memento模式代碼示例:

  1. #include< iostream> 
  2. #include< string> 
  3. using namespace std;  
  4. typedef string states;  
  5. class Memento;  
  6. class Orininator  
  7. {  
  8. public:  
  9. Orininator(){m_st="";m_mt=0;};  
  10. Orininator(const states& st){m_st=st;m_mt=0;};  
  11. ~Orininator(){};  
  12. Memento* CreateMemento();  
  13. void SetMemento(Memento* men){};  
  14. void RestoretoMen(Memento* mt);  
  15. states GetState(){return m_st;};  
  16. void SetState(const states& sdt){m_st=sdt;}  
  17. void PrintState(){cout< this->m_st< < ".."< < endl;}  
  18. private:  
  19. states m_st;  
  20. Memento* m_mt;  
  21. }; 
  1. class Memento  
  2. {  
  3. private:  
  4. friend class Orininator;//友元  
  5. Memento(){};  
  6. Memento(const states& st){m_st=st;};  
  7. ~Memento(){};  
  8. void SetState(const states& std){m_st=std;};  
  9. states GetState(){return m_st;};  
  10. private:  
  11. states m_st;  
  12. }; 
  1. Memento* Orininator::CreateMemento()  
  2. {  
  3. return new Memento(m_st);//合理的應用構造函數;  
  4. }  
  5. void Orininator::RestoretoMen(Memento* mt)  
  6. {  
  7. this->m_st=mt->GetState();  
  1. void main()  
  2. {  
  3. Orininator* Ori=new Orininator();  
  4. Ori->SetState("old");  
  5. Ori->PrintState();  
  6. Memento* m=Ori->CreateMemento();  
  7. Ori->SetState("new");  
  8. Ori->PrintState();  
  9. Ori->RestoretoMen(m);  
  10. Ori->PrintState();  

以上就是對C++ Memento模式的相關介紹。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved