轻松掌握Java备忘录模式
程序员文章站
2024-03-13 12:44:21
定义:保存一个对象的某个状态,以便在适当的时候恢复对象
特点:
1、给用户提供了一种可以恢复状态的机制,可以使用户能够比较方便地回...
定义:保存一个对象的某个状态,以便在适当的时候恢复对象
特点:
1、给用户提供了一种可以恢复状态的机制,可以使用户能够比较方便地回到某个历史的状态。
2、实现了信息的封装,使得用户不需要关心状态的保存细节。
企业级应用和常用框架中的应用:常见文本编辑器使用了该模式
实例:
注意:该实例中只有撤销操作,没有向前还原操作
/** * 目标对象:将要被备忘的对象 */ class word { private string content; private string image; private string table; public word(string content, string image, string table) { super(); this.content = content; this.image = image; this.table = table; } public wordmemento memento(){ return new wordmemento(this); } public void recovery(wordmemento memento){ this.content = memento.getcontent(); this.image = memento.getimage(); this.table = memento.gettable(); } public string getcontent() { return content; } public void setcontent(string content) { this.content = content; } public string getimage() { return image; } public void setimage(string image) { this.image = image; } public string gettable() { return table; } public void settable(string table) { this.table = table; } } /** * 备忘录对象 */ class wordmemento{ private string content; private string image; private string table; public wordmemento(word word) { this.content = word.getcontent(); this.image = word.getimage(); this.table = word.gettable(); } public string getcontent() { return content; } public void setcontent(string content) { this.content = content; } public string getimage() { return image; } public void setimage(string image) { this.image = image; } public string gettable() { return table; } public void settable(string table) { this.table = table; } } /** * 负责人对象:负责记录备忘录对象 */ class caretaker{ private list<wordmemento> list = new arraylist<>(); private int index = 0; public void setmemento(wordmemento memento){ list.add(memento); this.index = list.size(); } public wordmemento getwordmemento(){ if(index == 0){ system.out.println("没有可还原的内容"); return null; } wordmemento memento = list.get(index-1); list.remove(index-1); index--; return memento; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。