其他分享
首页 > 其他分享> > 设计模式 —— 备忘录

设计模式 —— 备忘录

作者:互联网

备忘录模式是“状态变化”模式中的一种。

动机

 模式定义

在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外保存这个状态。这样以后就可以将该对象恢复到原先保存的状态。    —— 《设计模式》GOF

 

结构

代码实现

 1 class Memento {
 2     string state;
 3     //..
 4    public:
 5     Memento(const string& s) : state(s) {}
 6     string getState() const { return state; }
 7     void setState(const string& s) { state = s; }
 8 };
 9 
10 class Originator {
11     string state;
12     //....
13    public:
14     Originator() {}
15     Memento createMomento() {
16         Memento m(state);
17         return m;
18     }
19     void setMomento(const Memento& m) { state = m.getState(); }
20 };
21 
22 int main() {
23     Originator orginator;
24 
25     //捕获对象状态,存储到备忘录
26     Memento mem = orginator.createMomento();
27 
28     //... 改变orginator状态
29 
30     //从备忘录中恢复
31     orginator.setMomento(memento);
32 }

 

要点总结

标签:状态,string,对象,orginator,备忘录,state,设计模式,Memento
来源: https://www.cnblogs.com/y4247464/p/15508162.html