惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
Vercel News
Vercel News
F
Fortinet All Blogs
量子位
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
D
Docker
WordPress大学
WordPress大学

博客园 - AlanPaoPao

23)Visitor 22)Template 21)Strategy 20)State 19)Observer 17)Mediator 16)Iterator 15)Interpreter 14)Command 13)Chain Of Responsibility 12)Proxy 11)Flyweight 10)Facade 09)Decorator 08)Composite 07)Bridge 06)Adapter 05)Prototype 04)Factory Method
18)Memento
AlanPaoPao · 2007-09-21 · via 博客园 - AlanPaoPao

    备忘录模式的目的是: 为一个对象提供状态储存和状态恢复的手段
    实例代码:

class Memento
{
  
private string name;
  
private string phone;
  
private double budget;
  
public Memento(string name, string phone, double budget)
  
{
    
this.name = name;
    
this.phone = phone;
    
this.budget = budget;
  }

  
public string Name
  
{
    
get return name; }
    
set { name = value; }
  }

  
public string Phone
  
{
    
get return phone; }
    
set { phone = value; }
  }

  
public double Budget
  
{
    
get return budget; }
    
set { budget = value; }
  }

}

class ProspectMemory
{
  
private Memento memento;
  
public Memento Memento
  
{
    
set { memento = value; }
    
get return memento; }
  }

}

class SalesProspect
{
  
private string name;
  
private string phone;
  
private double budget;
  
public string Name
  
{
    
get return name; }
    
set
    
{
      name 
= value;
      Console.WriteLine(
"Name: " + name);
    }

  }

  
public string Phone
  
{
    
get return phone; }
    
set
    
{
      phone 
= value;
      Console.WriteLine(
"Phone: " + phone);
    }

  }

  
public double Budget
  
{
    
get return budget; }
    
set
    
{
      budget 
= value;
      Console.WriteLine(
"Budget: " + budget);
    }

  }

  
public Memento SaveMemento()
  
{
    Console.WriteLine(
"\nSaving state --\n");
    
return new Memento(name, phone, budget);
  }

  
public void RestoreMemento(Memento memento)
  
{
    Console.WriteLine(
"\nRestoring state --\n");
    
this.Name = memento.Name;
    
this.Phone = memento.Phone;
    
this.Budget = memento.Budget;
  }

}

class MainApp
{
  
static void Main()
  
{
    SalesProspect s 
= new SalesProspect();
    s.Name 
= "Noel van Halen";
    s.Phone 
= "(412) 256-0990";
    s.Budget 
= 25000.0;
    ProspectMemory m 
= new ProspectMemory();
    m.Memento 
= s.SaveMemento();
    s.Name 
= "Leo Welch";
    s.Phone 
= "(310) 209-7111";
    s.Budget 
= 1000000.0;
    s.RestoreMemento(m.Memento);
    Console.Read();
  }

}