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

单例设计模式之饿汉式(静态代码块)

时间:2019-12-22 14:54:15      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:auth   demo   tin   att   ESS   stat   get   饿汉   private   

package com.waibizi.demo02;
/**
 * 单例设计模式之饿汉式(静态代码块)
 * 这种方式与饿汉式静态常量的方式是类似的,类装载的时候也有直接创建对象
 * @author 歪鼻子
 *
 */

@SuppressWarnings("all")
public class Singleton_Pattern {

    
    
    public static void main(String[] args) {
        // TODO Auto-generated method stub

    }

}
@SuppressWarnings("all")
class Singleton{
    private static Singleton instance;
    
    //静态代码块法
    static {
        instance = new Singleton();
    }
    
    private Singleton() {
        
    }
    public static Singleton getInstance() {
        return instance;
    }
}

单例设计模式之饿汉式(静态代码块)

标签:auth   demo   tin   att   ESS   stat   get   饿汉   private   

原文地址:https://www.cnblogs.com/waibizi/p/12079611.html

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