摘要: 1 /* 2 * Window系统可能会异常终止,设计一个系统备份程序。类WindowsSystem是 3 * 发起人角色(Orignation),类Memento是备忘录角色(Memento),类User是 4 * 备忘录管理角色(Caretaker)。应用备忘录模式,用C#控制台应用程序实现 5 * 该设计。 6 */ 7 using System; 8 using System.Collections.Generic; 9 using System.Linq;10 using System.Text;11 12 namespace Memento13 {14 //Or... 阅读全文
posted @ 2012-05-19 00:06 ZH奶酪 阅读(429) 评论(0) 推荐(0) 编辑