C # memorandum Mode

Source: Internet
Author: User

Structure:

Memento class: the container that saves the statusCopy codeThe Code is as follows: class Memento
{
Public string State {get; set ;}
Public Memento (string state)
{
This. State = state;
}
}

Caretaker is the class for saving Memento:Copy codeThe Code is as follows: class Caretaker
{
Public Memento {get; set ;}
}

The Originator class is the class to save the status:Copy codeThe Code is as follows: class Originator
{
Public string State {get; set ;}
Public Memento CreateMemento ()
{
Return (new Memento (State ));
}
Public void SetMemento (Memento memento)
{
State = memento. State;
}
Public void Show ()
{
Console. WriteLine ("State:" + State );
}
}

Main function call:Copy codeThe Code is as follows: class Program
{
Static void Main (string [] args)
{
Originator o = new Originator ();
O. State = "On ";
O. Show ();
Caretaker c = new Caretaker ();
C. Memento = o. CreateMemento ();
O. State = "off ";
O. Show ();
O. SetMemento (c. Memento );
O. Show ();
Console. ReadKey ();
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.