码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-07 13:11:19      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:单例设计   nal   zed   new   stat   单例模式   class   ret   let   

单例模式

饿汉式

    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;
    }
}

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

标签:单例设计   nal   zed   new   stat   单例模式   class   ret   let   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!