首页 > 其他 > 详细

单例设计模式(懒汉式、饿汉式)

时间:2020-01-07 13:33:03      阅读:61      评论:0      收藏:0      [点我收藏+]

单例模式

饿汉式

    class Singleton {
    /**
     * 单例模式---饿汉式
     */

    private static final Singleton s = new Singleton();

    private Singleton() {
    }

    public static Singleton getInstance() {
        return s;
    }
}

懒汉式

    class SingletonLazy {
    /**
     * 单例模式---懒汉式
     */

    private static SingletonLazy s;

    private SingletonLazy() {
    }

    /**
     * 解决并发线程不安全问题
     */
    public synchronized static SingletonLazy getInstance() {
        if (null == s)
            s = new SingletonLazy();
        return s;
    }
}

单例设计模式(懒汉式、饿汉式)

原文:https://www.cnblogs.com/blogfyang/p/12160611.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!