摘要: 单例模式之饿汉模式:示例代码 ↓1 class Demo{2 private static Demo obj = new Demo(); //在本类中保存本类型静态私有字段3 private Demo(){} //私有化构造函数 使得本类在外部无法实例化4 public s... 阅读全文