【设计模式系列】备忘录模式(十九)
目录
一、什么是备忘录模式
二、备忘录模式的角色
三、备忘录模式的典型应用场景
四、备忘录模式在Calendar中的应用
一、什么是备忘录模式
备忘录模式(Memento Pattern)是一种行为型设计模式,它允许在不暴露对象内部状态的情况下保存和恢复对象的状态 。备忘录模式通过将对象的状态封装在备忘录对象中,使得可以在需要时将对象恢复到之前的某个状态 。
二、备忘录模式的角色
-
发起人(Originator):负责创建一个备忘录对象,用于保存当前时刻的内部状态,并可以使用备忘录恢复其内部状态 。发起人可以根据需求决定备忘录存储哪些内部状态 。
-
备忘录(Memento):负责存储发起人对象的内部状态,并封装这些状态,防止除了发起人之外的其他对象访问备忘录 。备忘录通常包含两个接口,一个窄接口供管理者使用,一个宽接口供发起人使用 。
-
管理者(Caretaker):负责保存好备忘录对象,但不能对备忘录的内容进行操作或检查。管理者可以决定保存哪些备忘录以及保存多久 。
三、备忘录模式的典型应用场景
- 版本管理场景:备忘录模式可以用来保存每个版本的状态。当需要回滚到之前的版本时,可以通过备忘录模式恢复到历史状态 。
四、备忘录模式在Calendar中的应用
备忘录模式在Calendar
应用中可以用于实现日期的撤销(Undo)和重做(Redo)功能。在这种应用中,用户可能需要恢复到某个特定的日期。以下是备忘录模式在Calendar中的具体应用
:
首先先创建一个备忘录,用来存储一个日历中的日期、所要记录的事项。
public class CalendarEventMemento {
private final String title;
private final String date;
private final String description;
public CalendarEventMemento(String title, String date, String description) {
this.title = title;
this.date = date;
this.description = description;
}
// 只提供 getter 方法以保证备忘录的不可变性
public String getTitle() {
return title;
}
public String getDate() {
return date;
}
public String getDescription() {
return description;
}
}
然后我们创建一个发起人,可以创建日历来保存状态,也可以恢复某一状态
public class CalendarEvent {
private String title;
private String date;
private String description;
public CalendarEvent(String title, String date, String description) {
this.title = title;
this.date = date;
this.description = description;
}
// 创建备忘录
public CalendarEventMemento save() {
return new CalendarEventMemento(title, date, description);
}
// 从备忘录恢复
public void restore(CalendarEventMemento memento) {
this.title = memento.getTitle();
this.date = memento.getDate();
this.description = memento.getDescription();
}
// Getters and Setters
public void setTitle(String title) {
this.title = title;
}
public void setDate(String date) {
this.date = date;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public String toString() {
return "事件: " + title + ", 日期: " + date + ", 描述: " + description;
}
}
最后,我们创建一个管理者,用来管理历史日历状态
import java.util.ArrayList;
import java.util.List;
public class CalendarCaretaker {
private List<CalendarEventMemento> mementoList = new ArrayList<>();
public void addMemento(CalendarEventMemento memento) {
mementoList.add(memento);
}
public CalendarEventMemento getMemento(int index) {
return mementoList.get(index);
}
}
其中,客户端代码示例如下:
public class Main {
public static void main(String[] args) {
// 创建日历事件管理者
CalendarCaretaker caretaker = new CalendarCaretaker();
// 创建原始日历事件
CalendarEvent event = new CalendarEvent("团队会议", "2024-03-20", "讨论项目进度");
System.out.println("原始事件: " + event);
// 保存当前状态
caretaker.addMemento(event.save());
// 修改事件
event.setTitle("紧急会议");
event.setDescription("讨论重要客户需求");
System.out.println("修改后的事件: " + event);
// 再次保存状态
caretaker.addMemento(event.save());
// 恢复到第一个状态
event.restore(caretaker.getMemento(0));
System.out.println("恢复到初始状态: " + event);
// 恢复到第二个状态
event.restore(caretaker.getMemento(1));
System.out.println("恢复到第二个状态: " + event);
}
}