单例模式是一种常用的软件设计模式。它只包含一个被称为单例类的特殊类。通过这个模式可以保证系统中一个类只有一个实例而且该实例易于外界访问,从而方便对实例个数的控制并节约系统资源。
实体类precident
下面那个看看就好,具体看这个http://blog.csdn.net/zhangzeyuaaa/article/details/42673245
class president { private static president instance = null; public static president getInstance(string name) { if (instance == null && !name.Equals(null)) { instance = new president(name) ; } return instance ; } |