英文原文:http://www.dofactory.com/Patterns/PatternMemento.aspx
一、Memento Pattern (备忘录模式)
Define:Without violating encapsulation, capture and externalize an object's internal state so that the object can be restored to this state later.
定义:在不违反封装性,捕获和使得一个对象的内状态具体化,以至于这个对象可以被存储于这个状态之后。
二、UML类图
- Memento (Memento)
- stores internal state of the Originator object. The memento may store as much or as little of the originator's internal state as necessary at its originator's discretion.
- protect against access by objects of other than the originator. Mementos have effectively two interfaces. Caretaker sees a narrow interface to the Memento -- it can only pass the memento to the other objects. Originator, in contrast, sees a wide interface, one that lets it access all the data necessary to restore itself to its previous state. Ideally, only the originator that produces the memento would be permitted to access the memento's internal state.
- Originator (SalesProspect)
- creates a memento containing a snapshot of its current internal state.
- uses the memento to restore its internal state
- Caretaker (Caretaker)
- is responsible for the memento's safekeeping
-
never operates on or examines the contents of a memento.
三、Memento Pattern (备忘录模式)实例代码
四、使用备忘录模式的实例代码
This real-world code demonstrates the Memento pattern which temporarily saves and then restores the SalesProspect's internal state.
临时保存和恢复SalesProspect的内部状态