简单概念单例模式:确保这个类,只有一个实例,并且自动实例化向系统提供这个对象。public class Singleton { private static Singleton singleton = null; private static int count = 0; priv