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

备忘录模式

时间:2024-12-29 22:09:23浏览次数:1  
标签:String System 模式 备忘录 user println public out

实验 20:备忘录模式

本次实验属于模仿型实验,通过本次实验学生将掌握以下内容: 

1、理解备忘录模式的动机,掌握该模式的结构;

2、能够利用备忘录模式解决实际问题。

 

[实验任务一]:多次撤销

 

改进课堂上的“用户信息操作撤销”实例,使得系统可以实现多次撤销(可以使用HashMap、ArrayList等集合数据结构实现)。

类图

 

源代码

import java.util.ArrayList;import java.util.List;
public class Caretaker {
    private List<Memento> list=new ArrayList<>();
    public Memento getMemento() {
        Memento mm=list.get(list.size()-2);
        list.remove(list.size()-2);
        return mm;
    }
    public void setMemento(Memento memento) {
        list.add(memento);
    }
}

public class Memento {
    private String account;
    private String password;
    private String telNo;
    public String getAccount() {
        return account;
    }
    public void setAccount(String account) {
        this.account = account;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    public String getTelNo() {
        return telNo;
    }
    public void setTelNo(String telNo) {
        this.telNo = telNo;
    }
    public Memento(String account, String password, String telNo) {
        this.account = account;
        this.password = password;
        this.telNo = telNo;
    }
    
}
public class UserInfoDTO {
    private String account;
    private String password;
    private String telNo;
    public String getAccount() {
        return account;
    }
    public void setAccount(String account) {
        this.account = account;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    public String getTelNo() {
        return telNo;
    }
    public void setTelNo(String telNo) {
        this.telNo = telNo;
    }
    
    public Memento saveMemento() {
        return new Memento(account,password,telNo);
    }
    public void restoreMemento(Memento memento) {
        this.account=memento.getAccount();
        this.password=memento.getPassword();
        this.telNo=memento.getTelNo();
    }
    public void show() {
        System.out.println("Account:"+this.account);
        System.out.println("Password:"+this.password);
        System.out.println("TelNo:"+this.telNo);
    }
    
}
public class Client {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        UserInfoDTO user=new UserInfoDTO();
        Caretaker c=new Caretaker();
        
        user.setAccount("zhangsan");
        user.setPassword("123456");
        user.setTelNo("1310000000");
        System.out.println("状态一:");
        user.show();
        c.setMemento(user.saveMemento());
        System.out.println("-----------------------------");
        
        user.setPassword("111111");
        user.setTelNo("1310001111");
        System.out.println("状态二:");
        user.show();
        c.setMemento(user.saveMemento());
        System.out.println("-----------------------------");
        
        user.setPassword("zyx666");
        user.setTelNo("15733333333");
        System.out.println("状态三:");
        user.show();
        c.setMemento(user.saveMemento());
        System.out.println("-----------------------------");
        
        user.setPassword("777777");
        user.setTelNo("15511111111");
        System.out.println("状态四:");
        user.show();
        c.setMemento(user.saveMemento());
        System.out.println("-----------------------------");
        
        user.setPassword("666666");
        user.setTelNo("17455555555");
        System.out.println("状态五:");
        user.show();
        c.setMemento(user.saveMemento());
        System.out.println("-----------------------------");
        
        
        user.restoreMemento(c.getMemento());
        System.out.println("回到状态四:");
        user.show();
        System.out.println("-----------------------------");
        
        user.restoreMemento(c.getMemento());
        System.out.println("回到状态三:");
        user.show();
        System.out.println("-----------------------------");
        
        user.restoreMemento(c.getMemento());
        System.out.println("回到状态二:");
        user.show();
        System.out.println("-----------------------------");
        
        user.restoreMemento(c.getMemento());
        System.out.println("回到状态一:");
        user.show();
        System.out.println("-----------------------------");
    }

}

  

 

标签:String,System,模式,备忘录,user,println,public,out
From: https://www.cnblogs.com/pinganxile/p/18639662

相关文章

  • 观察者模式
    实验21:观察者模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:1、理解观察者模式的动机,掌握该模式的结构;2、能够利用观察者模式解决实际问题。[实验任务一]:股票提醒当股票的价格上涨或下降5%时,会通知持有该股票的股民,当股民听到价格上涨的消息时会买股票,当价格下......
  • 装饰模式
    实验11:装饰模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:1、理解装饰模式的动机,掌握该模式的结构;2、能够利用装饰模式解决实际问题。[实验任务]:手机功能的升级用装饰模式模拟手机功能的升级过程:简单的手机(SimplePhone)在接收来电时,会发出声音提醒主人;而JarPhone......
  • 单例模式
    实验7:单例模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:1、理解单例模式的动机,掌握该模式的结构;2、能够利用单列模式解决实际问题。[实验任务一]:学号的单一仿照课堂的身份证的例子,实现每个同学仅有一个学号这一问题。类图  源代码publicclassStuden......
  • 适配器模式
    实验八适配器模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:1、理解适配器模式的动机,掌握该模式的结构;2、能够利用适配器模式解决实际问题。[实验任务一]:双向适配器实现一个双向适配器,使得猫可以学狗叫,狗可以学猫抓老鼠。类图源代码publicinterfaceDog{......
  • 桥接模式
    实验9:桥接模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:1、理解桥接模式的动机,掌握该模式的结构;2、能够利用桥接模式解决实际问题。[实验任务一]:两个维度的桥接模式用桥接模式实现在路上开车这个问题,其中,车可以是car或bus,路可以是水泥路或沥青路。类图源代......
  • 外观模式
    实验12:外观模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容:1、理解外观模式的动机,掌握该模式的结构;2、能够利用外观模式解决实际问题。[实验任务一]:计算机开启在计算机主机(Mainframe)中,只需要按下主机的开机按钮(on()),即可调用其他硬件设备和软件的启动方法,如......
  • 工厂方法模式
    目前常用的加密算法有DES(DataEncryptionStandard)和IDEA(InternationalDataEncryptionAlgorithm)国际数据加密算法等,请用工厂方法实现加密算法系统。实验要求:1.画出对应的类图;2.提交该系统的代码,该系统务必是一个可以能够直接使用的系统,查阅资料完成相应加密算法的实现;3.注......
  • 抽象工厂模式
    使用抽象工厂模式,完成下述产品等级结构:  1. 画出对应的类图;   2. 提交源代码;publicinterfaceSkin{    voidshow();}publicinterfaceGender{    voidshow();}publicinterfaceHumanFactory{    SkincreateSkin();    GendercreateG......
  • 建造者模式
    [实验任务一]:计算机组装使用建造者模式,完成下述任务:计算机组装工厂可以将CPU、内存、硬盘、主机等硬件设备组装在一起构成计算机,计算机的类型可以是笔记本,也可以是台式机。  源代码:interfaceBuilder{    voidsetCPU(Stringcpu);    voidsetRam(intram);  ......
  • 原型模式
    [实验任务一]:向量的原型用C++完成数学中向量的封装,其中,用指针和动态申请支持向量长度的改变,使用浅克隆和深克隆复制向量类,比较这两种克隆方式的异同。  #include<iostream>#include<stdexcept> classVector{private:    int*elements;//指向向量元素的指针......