黑马程序员技术交流社区

标题: 单例模式2 [打印本页]

作者: 小白进阶之路    时间: 2018-3-18 18:55
标题: 单例模式2
第二种:饥汉模式
public class SingleTon {
        private SingleTon(){}
       
        private static instance = null;//new SingleTon();
       
        public static synchronized SingleTon getInstance(){
                if(instance == null)
                        instance = new SingleTon();
                return instance;
        }
}
作者: 小白进阶之路    时间: 2018-3-18 20:03
占座00000000000000000
作者: 金色的程序员    时间: 2018-3-19 08:38
是php的吗?





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2