标签: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