首页 > 编程语言 >备忘录模式javac++

备忘录模式javac++

时间:2022-12-23 17:11:28浏览次数:44  
标签:account password java String c++ 备忘录 telNo public Memento

软件设计                  石家庄铁道大学信息学院

 

实验 20:备忘录模式

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

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

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

 

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

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

实验要求:

1. 提交源代码;

 

 

 

 

2. 注意编程规范。

 

 

 

package test20;

public class Caretaker
{
    private Memento[] array = null;
    private int index;
    private Memento memento;
    public Memento getMemento()
    {
        return memento;
    }
    public void setMemento(Memento memento)
    {
        this.memento=memento;
    }
    public Caretaker(){
        array = new Memento[10];
        index = 0;
    }
    public void addMemento(Memento Memento){
        array[index++] = Memento;
    }
    public Memento preMemento(){
        Memento pop = null;
        try {
            pop = array[--index];
        } catch (Exception e) {
            e.printStackTrace();
        }
        return pop;
    }
}
package test20;

public class main {
    public static void main(String args[]) {
        UserInfoDTO user = new UserInfoDTO();
        Caretaker c = new Caretaker();
        user.setAccount("zhangrong");
        user.setPassword("123456");
        user.setTelNo("130000");
        System.out.println("状态一:");
        user.show();
        c.addMemento(user.saveMemento());
        System.out.println("-----------------");

        user.setPassword("000000");
        user.setTelNo("130111");
        System.out.println("状态二:");
        user.show();
        c.addMemento(user.saveMemento());
        System.out.println("-----------------");

        user.setPassword("111111");
        user.setTelNo("130222");
        System.out.println("状态三:");
        user.show();
        System.out.println("-----------------");

        user.restoreMemento(c.preMemento());
        System.out.println("回到状态二:");
        user.show();
        System.out.println("-----------------");

        user.restoreMemento(c.preMemento());
        System.out.println("回到状态一:");
        user.show();
        System.out.println("-----------------");
    }
}
package test20;

class Memento
{
    private String account;
    private String password;
    private String telNo;
    public Memento(String account,String password,String telNo)
    {
        this.account=account;
        this.password=password;
        this.telNo=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;
    }
}
package test20;

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("账号是" + this.account);
        System.out.println("密码是" + this.password);
        System.out.println("电话是" + this.telNo);
    }
}
#include<iostream>
#include<string>
#include<vector>
using namespace std;
//备忘录
class Memento {
private:
    string account;
    string password;
    string telNo;
public:
    Memento(string account, string password, string telNo) {
        this->account = account;
        this->password = password;
        this->telNo = telNo;
    }

    string getAccount() {
        return account;
    }
    void setAccount(string account) {
        this->account = account;
    }
    string getPassword() {
        return password;
    }
    void setPassword(string password) {
        this->password = password;
    }
    string getTelNo() {
        return telNo;
    }
    void setTelNo(string telNo) {
        this->telNo = telNo;
    }
};
//发起者
class UserInfoDTO {
private:
    string account;
    string password;
    string telNo;
public:
    string getAccount() {
        return account;
    }
    void setAccount(string account) {
        this->account = account;
    }
    string getPassword() {
        return password;
    }
    void setPassword(string password) {
        this->password = password;
    }

    string getTelNo() {
        return telNo;
    }
    void setTelNo(string telNo) {
        this->telNo = telNo;
    }

    Memento saveMemento() {
        Memento memento(account, password, telNo);
        return memento;
    }

    void restoreMenmento(Memento memento) {
        this->account = memento.getAccount();
        this->password = memento.getPassword();
        this->telNo = memento.getTelNo();
    }
    void show() {
        cout << "帐号:" + this->account << endl;
        cout << "密码:" + this->password << endl;
        cout << "电话:" + this->telNo << endl;
    }
};
//管理者
class Caretaker {
private:
    vector<Memento>mementos;
public:
    Memento getMemento(int i) {
        return mementos.at(i);
    }
    void setMemento(Memento memento) {
        mementos.push_back(memento);
    }
};
//测试函数
int main() {
    int index = -1;
    UserInfoDTO user;
    Caretaker taker;

    user.setAccount("zhangrong");
    user.setPassword("123456");
    user.setTelNo("13300000000");
    cout << "状态一:" << endl;
    taker.setMemento(user.saveMemento());
    index++;
    user.show();
    cout << "----------------------------------" << endl;

    user.setPassword("000000");
    user.setTelNo("13300001111");
    cout << "状态二:" << endl;
    taker.setMemento(user.saveMemento());
    index++;
    user.show();
    cout << "----------------------------------" << endl;

    user.setPassword("111111");
    user.setTelNo("13300002222");
    cout << "状态三:" << endl;
    user.show();
    cout << "----------------------------------" << endl;

    cout << "回到状态二:" << endl;
    index--;
    user.restoreMenmento(taker.getMemento(1));
    user.show();
    cout << "----------------------------------" << endl;

    cout << "回到状态一:" << endl;
    index --;
    user.restoreMenmento(taker.getMemento(0));
    user.show();
    cout << "----------------------------------" << endl;

}

 

 

标签:account,password,java,String,c++,备忘录,telNo,public,Memento
From: https://www.cnblogs.com/rongzhang/p/17001124.html

相关文章

  • Java中线程的6种状态详解
    java.lang.Thread.State枚举类中定义了六种线程的状态,可以调用线程Thread中的getState()方法获取当前线程的状态。publicenumState{NEW,RUNNABLE,......
  • 代理模式javac++
    软件设计                 石家庄铁道大学信息学院 实验14:代理模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容: 1、理解代理模式的动......
  • 15_Java筑基之Object类、多态
    15_Java筑基之Object类、多态一.Object类Object类是类层次结构的根类,每个类都使用Object作为超类(父类).1.equals()方法指示其他某个对象是否与此对象“相等”.示例代码;......
  • C++ 获取特定进程的CPU使用率
    近来发现笔记本在关闭屏幕后风扇转得特别快,打开屏幕后看任务管理器,风扇马上减速,也没有发现大量占用CPU的进程。于是想写一个小程序在后台记录每个进程的CPU使用情况,揪出锁......
  • 装饰模式javac++
    实验11:装饰模式本次实验属于模仿型实验,通过本次实验学生将掌握以下内容: 1、理解装饰模式的动机,掌握该模式的结构;2、能够利用装饰模式解决实际问题。 [实验任务一]:手......
  • Java学习笔记7
    1.API​ API(ApplicationProgrammingInterface):应用程序接口。Java中的API:​ 指的是JDK中提供的各种功能的Java类,这些类将底层的实现封装了起来,我们不需要关心这些类是......
  • windows平台下 c++获取 系统版本 网卡 内存 CPU 硬盘 显卡信息
    GetsysInfo.h:#ifndef_H_GETSYSINFO#define_H_GETSYSINFO#pragmaonce#include<afxtempl.h>classGetSysInfo{public:GetSysIn......
  • java处理excel文件的读写
    简述1、一般会将文件地址作为入参,对文件进行处理2、将文件放到File中:Filefile=newFile(fileName)3、判断文件是否存在:if(!file.exists()){returnnull;}4、将文件......
  • 跨平台C++ DLL导出宏
    #pragmaonce#ifdefined(__GNUC__)#define_DEPRECATED___attribute__((deprecated))#define_FORCE_INLINE___attribute__((always_inline))#elifdefined(_MSC_......
  • Java重点 | Collection集合的子类
    Collection集合的子类List接口独有的常用方法举例介绍publicclassList接口常用方法{publicstaticvoidmain(String[]args){Listlist=newArray......