1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
public class {
private static Singleton INSTANCE;
private static boolean init;
private (){ if(init){ throw new RuntimeException("已经初始化过了"); } init(); init= true; }
private void init(){ }
public static Singleton getInstance(){ if(INSTANCE==null){ synchronized (Singleton.class){ if(INSTANCE==null){ INSTANCE= new Singleton(); } } } return INSTANCE; }
public static void main(String[] args) { Singleton u =new Singleton(); System.out.println(u);
} }
|
近期评论