摘要:
原型模式(Prototype Pattern):使用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。模式角色与结构:示例代码:using System;using System.Collections.Generic;using System.Linq;using System.Tex... 阅读全文
摘要:
单例模式(Singleton Pattern):确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例,这个类称为单例类,它提供全局访问的方法。模式角色与结构:示例代码:using System;using System.Collections.Generic;using System.L... 阅读全文