单例模式

女生的网名这么多〃 提交于 2020-01-10 17:43:29

恶汉式

public class Monitor1 {
        private Monitor1 (){}
        //创建Monitor1的无参构造器
        private static Monitor1 monitor=new Monitor1();
        //先创建Monitor1对象
        //待有需求的时候再调用
        public static Monitor1 getMonitor(){
            return monitor;
        }
}

懒汉式

public class Single {
    private static volatile Single instance;
    private Single() {}
    public static Single getInstance() {
        if (instance == null) {
            synchronized (Single.class) {
                if (instance == null) {
                    instance = new Single();
                }
            }
        }
        return instance;
    }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!