手写单例模式_手写 dcl-CSDN博客网友收藏

手写单例模式_手写 dcl-CSDN博客

文章浏览阅读137次。懒汉式:太懒了,等到需要的时候才加载。这个不是线程安全的,所以一般用的极少:public class Singleton{ private static Singleton singleton; public static Singleton getInstance(){ if(singleton == null){ singleton = new Singleton(); } r......
阅读全文