【设计模式】备忘录模式

备忘录模式:在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外保存这个状态。这样,以后就可以将该对象恢复到原先保存的状态。备忘录模式UML图如下:


下面是一个用C++描述的备忘录模式的基本框架。

#include <iostream>
#include <string>

using namespace std;

// 备忘录
class Memento {
public:
	// 保存数据
	Memento(const string &str = "")
	{
		state = str;
	}
	// 提取数据
	const string& State() const
	{
		return state;
	}
private:
	string state;
};

// 保存备忘录的管理者
class Caretaker {
public:
	// 得到备忘录
	void SetMemento(Memento *mem)
	{
		Memento = mem;
	}
	// 取出备忘录
	Memento* GetMemento()
	{
		return Memento;
	}
	~Caretaker()
	{
		delete Memento;	// 销毁备忘录
	}
private:
	Memento *Memento;	// 保存一个备忘录
};

class Originator {
public:
	// 设置状态
	void SetState(const string &str)
	{
		state = str;
	}
	// 获得当前状态
	const string& GetState()
	{
		return state;
	}
	// 创建备忘录
	Memento* CreateMemento()
	{
		return new Memento(state);
	}
	// 从备忘录恢复
	void SetMemento(const Memento *Memento)
	{
		state = Memento->State();
	}
private:
	string state;	// 发起人的状态
};

int main()
{
	Originator origin;

	// 设置状态并打印
	origin.SetState("Hello world!");
	cout << origin.GetState() << endl;

	// 创建备忘录并保存到Caretaker中
	Caretaker care;
	care.SetMemento(origin.CreateMemento());

	// 更改状态并打印
	origin.SetState("nihao!");
	cout << origin.GetState() << endl;

	// 恢复更改之前的状态并打印
	origin.SetMemento(care.GetMemento());
	cout << origin.GetState() << endl;

	system("pause");
	return 0;
}

运行结果:



我们将需要保存的状态放在了Memento类中,而Memento类又是由Caretaker来管理的。使用备忘录可以把复杂的对象内部信息对其它对象屏蔽起来。当Originator需要恢复到先前的状态时,就直接从备忘录中提取状态,避免了客户代码中一条条的赋值语句。但备忘录模式也有自己的缺点:如果Originator类中的状态信息很多,那么备忘录将占用大量空间。

参考:

《大话设计模式》第18章

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
备忘录模式是一种行为型设计模式,它允许在不破坏封装性的前提下捕获并保存一个对象的内部状态,并在需要时恢复该状态。在软件开发中,备忘录模式通常用于实现撤销操作或者历史记录功能。 下面是一个使用备忘录模式的简单示例,假设我们有一个文本编辑器,用户可以在其中输入文本并进行编辑操作。我们希望实现一个撤销功能,使得用户可以撤销之前的编辑操作。 首先,我们需要定义一个备忘录类,用于保存编辑器的状态: ```python class EditorMemento: def __init__(self, content): self.content = content def get_content(self): return self.content ``` 然后,我们需要定义一个编辑器类,其中包含了一些编辑操作,以及用于保存和恢复状态的方法: ```python class Editor: def __init__(self): self.content = "" def type(self, words): self.content = self.content + " " + words def delete(self, words): if words in self.content: self.content = self.content.replace(words, "") def save(self): return EditorMemento(self.content) def restore(self, memento): self.content = memento.get_content() ``` 最后,我们可以使用这个编辑器类来实现撤销功能: ```python editor = Editor() editor.type("This is the first sentence.") editor.type("This is the second sentence.") saved = editor.save() editor.delete("second") print(editor.content) # 输出:This is the first sentence. editor.restore(saved) print(editor.content) # 输出:This is the first sentence. This is the second sentence. ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值