摘要:
package singleton; /** * 单例模式 * @author pengYi * */ public class Singleton { private static Singleton instance = null; private Singleton(){} public static Singleton getSingletonInstance()... 阅读全文
摘要:
需要注意是:构造方法是私有的,防止外部调用,保证枚举类数据不被破坏 阅读全文