單例模式實現的3種方式,推薦

如下爲單例模式實現的3種經常使用方式。安全 (1)餓漢模式 多線程 public class Hungry { private Hungry() { }//單例模式都要注意隱藏構造器 private static Hungry singleTon = new Hungry(); public static Hungry getSingleTon(){ r
相關文章
相關標籤/搜索