美文网首页
单例模式-饿汉式

单例模式-饿汉式

作者: 末小竹 | 来源:发表于2019-06-01 18:15 被阅读0次
    /**
    
    * 单例模式
    
    * 饿汉式
    
    * @author Administrator
    
    */
    
    public class Single {
    
    /**
    
    * 私有化构造函数
    
    */
    
        private Single() {
    
    }
    
    /**
    
    * 在本类中创建唯一实例,用私有静态成员变量保存
    
    */
    
        private static Single sg =new Single();
    
        /**
    
    * 对外提供公有静态获取方法
    
    */
    
        public static Single getInstance() {
    
    return sg;
    
        }
    
    public static void main(String[] args) {
    
    System.out.println("************饿汉式*************");
    
            System.out.println(Single.getInstance());
    
        }
    
    }
    

    相关文章

      网友评论

          本文标题:单例模式-饿汉式

          本文链接:https://www.haomeiwen.com/subject/omiatctx.html