单例模式(Singleton Pattern)是指确保一个类在任何情况下都绝对只有一个实例,并提供一个全局的访问点。
隐藏其所有的构造方法。
属于创建型模式。
单例模式的适用场景
确保任何情况下都绝对只有一个实例。
ServletContext、ServletConfig、ApplicationContext、DBPool
饿汉式
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 37 38 39 40
| package h.xd.java;
import java.lang.reflect.Constructor; import java.util.concurrent.TimeUnit;
public class HungrySingleton { private static final HungrySingleton hungrysingleton = new HungrySingleton();
private HungrySingleton(){};
public static HungrySingleton getInstance(){ return hungrysingleton; }
public static void main(String[] args) throws InterruptedException { for (int i = 0; i < 20; i++) { new Thread(()->{ System.out.println(HungrySingleton.getInstance()); }).start(); new Thread(()->{ try { Constructor<HungrySingleton> declaredConstructor = HungrySingleton.class.getDeclaredConstructor(); HungrySingleton hungrySingleton = declaredConstructor.newInstance(); System.out.println(hungrySingleton); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); } }
|
懒汉式
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 37 38 39 40 41
| package h.xd.java;
import java.lang.reflect.Constructor; import java.util.concurrent.TimeUnit;
public class LazySimpleSingleton { private static LazySimpleSingleton instance; private LazySimpleSingleton(){}
public static synchronized LazySimpleSingleton getInstance(){ if(instance == null){ instance = new LazySimpleSingleton(); } return instance; }
public static void main(String[] args) throws InterruptedException { for (int i = 0; i < 20; i++) { new Thread(()->{ System.out.println(LazySimpleSingleton.getInstance()); }).start(); new Thread(()->{ try { Constructor<LazySimpleSingleton> declaredConstructor = LazySimpleSingleton.class.getDeclaredConstructor(); LazySimpleSingleton lazySimpleSingleton = declaredConstructor.newInstance(); System.out.println(lazySimpleSingleton); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); } }
|
双重校验懒汉式
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| package h.xd.java;
import java.lang.reflect.Constructor; import java.util.concurrent.TimeUnit;
public class LazyDoubleCheckSingleton { private volatile static LazyDoubleCheckSingleton instance; private LazyDoubleCheckSingleton(){}
public static LazyDoubleCheckSingleton getInstance(){ if(instance == null){ synchronized (LazyDoubleCheckSingleton.class){ if(instance == null){ instance = new LazyDoubleCheckSingleton(); } } } return instance; }
public static void main(String[] args) throws InterruptedException { for (int i = 0; i < 20; i++) { new Thread(()->{ System.out.println(LazyDoubleCheckSingleton.getInstance()); }).start(); new Thread(()->{ try { Constructor<LazyDoubleCheckSingleton> declaredConstructor = LazyDoubleCheckSingleton.class.getDeclaredConstructor(); LazyDoubleCheckSingleton lazyDoubleCheckSingleton = declaredConstructor.newInstance(); System.out.println(lazyDoubleCheckSingleton); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); } }
|
双重校验懒汉防反射
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| package h.xd.java;
import java.lang.reflect.Constructor; import java.util.concurrent.TimeUnit;
public class LazyDoubleCheckSingleton2 { private volatile static LazyDoubleCheckSingleton2 instance; private LazyDoubleCheckSingleton2(){ if(LazyDoubleCheckSingleton2.instance != null ){ throw new RuntimeException("不允许非法的访问"); } }
public static LazyDoubleCheckSingleton2 getInstance(){ if(instance == null){ synchronized (LazyDoubleCheckSingleton2.class){ if(instance == null){ instance = new LazyDoubleCheckSingleton2(); } } } return instance; }
public static void main(String[] args) throws InterruptedException { for (int i = 0; i < 20; i++) { new Thread(()->{ System.out.println(LazyDoubleCheckSingleton2.getInstance()); }).start(); new Thread(()->{ try { Constructor<LazyDoubleCheckSingleton2> declaredConstructor = LazyDoubleCheckSingleton2.class.getDeclaredConstructor(); LazyDoubleCheckSingleton2 lazyDoubleCheckSingleton2 = declaredConstructor.newInstance(); System.out.println(lazyDoubleCheckSingleton2); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); } }
|
枚举单例
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| package h.xd.java;
import java.lang.reflect.Constructor; import java.util.concurrent.TimeUnit;
public enum EnumSingleton { INSTANCE;
private int count = 0; public void increment(){ count++; }
public int getCount(){ return count; }
public static EnumSingleton getInstance(){ return INSTANCE; }
public static void main(String[] args) throws InterruptedException { EnumSingleton.getInstance().increment(); EnumSingleton.getInstance().increment(); for (int i = 0; i < 20; i++) { new Thread(()->{ System.out.println(EnumSingleton.getInstance().getCount());
}).start(); new Thread(()->{ try { Constructor<EnumSingleton> declaredConstructor = EnumSingleton.class.getDeclaredConstructor(); EnumSingleton enumSingleton = declaredConstructor.newInstance(); System.out.println(enumSingleton.getCount()); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); } }
|
内部类单例
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 37 38 39 40 41 42 43 44 45
| package h.xd.java;
import java.lang.reflect.Constructor; import java.util.concurrent.TimeUnit;
public class InnerSingleton {
private InnerSingleton(){}
private static class SingletonHolder{ private static final InnerSingleton INSTANCE = new InnerSingleton(); }
public static InnerSingleton getInstance(){ return SingletonHolder.INSTANCE; }
public static void main(String[] args) throws InterruptedException { for (int i = 0; i < 20; i++) { new Thread(()->{ System.out.println(InnerSingleton.getInstance()); }).start(); new Thread(()->{ try { Constructor<InnerSingleton> declaredConstructor = InnerSingleton.class.getDeclaredConstructor(); InnerSingleton innerSingleton = declaredConstructor.newInstance(); System.out.println(innerSingleton); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); } }
|
容器思想单例
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| package h.xd.java;
import java.lang.reflect.Constructor; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.TimeUnit;
public class ContainerSingleton { private ContainerSingleton(){} private static Map<String,Object> ioc = new ConcurrentHashMap<String, Object>(); public static synchronized Object getInstance(String className){ Object instance = null; if(!ioc.containsKey(className)){ try{ instance = Class.forName(className).newInstance(); ioc.put(className,instance); }catch (Exception e){ e.printStackTrace(); } return instance; }else { return ioc.get(className); } }
public static void main(String[] args) throws InterruptedException { for (int i = 0; i < 20; i++) { new Thread(()->{ System.out.println(ContainerSingleton.getInstance("h.xd.java.ContainerSingleton")); }).start();
new Thread(()->{ try { Constructor<ContainerSingleton> declaredConstructor = ContainerSingleton.class.getDeclaredConstructor(); ContainerSingleton enumSingleton = declaredConstructor.newInstance(); System.out.println(enumSingleton); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); } }
|
防序列化单例
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
| package h.xd.java;
import java.io.*; import java.util.concurrent.TimeUnit;
public class SerializableSingleton implements Serializable {
public final static SerializableSingleton INSTANCE = new SerializableSingleton();
private SerializableSingleton(){}
public static SerializableSingleton getInstance(){ return INSTANCE; }
public Object readResolve(){ return INSTANCE; }
public static void main(String[] args) throws InterruptedException { SerializableSingleton instance = SerializableSingleton.getInstance(); FileOutputStream fos = null; try { fos = new FileOutputStream("SerializableSingleton.obj"); ObjectOutputStream oos = new ObjectOutputStream(fos); oos.writeObject(instance); oos.flush(); oos.close();
System.out.println(instance); for (int i = 0; i < 20; i++) { new Thread(() -> { FileInputStream fis = null; SerializableSingleton instance1 = null; try { fis = new FileInputStream("SerializableSingleton.obj"); ObjectInputStream ois = new ObjectInputStream(fis); instance1 =(SerializableSingleton) ois.readObject(); ois.close();
System.out.println(instance1); } catch (Exception e) { e.printStackTrace(); } }).start(); } TimeUnit.SECONDS.sleep(2); }catch (Exception e){ e.printStackTrace(); } } }
|
线程内部只有一个实例的单例
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
| package h.xd.java;
import java.util.concurrent.TimeUnit;
public class ThreadLocalSingleton {
private static final ThreadLocal<ThreadLocalSingleton> INSTANCE = ThreadLocal.withInitial(ThreadLocalSingleton::new);
private ThreadLocalSingleton(){}
public static ThreadLocalSingleton getInstance(){ return INSTANCE.get(); }
public static void main(String[] args) throws InterruptedException { for (int i = 0; i < 1; i++) { new Thread(() -> { System.out.println(ThreadLocalSingleton.getInstance()); System.out.println(ThreadLocalSingleton.getInstance()); System.out.println(ThreadLocalSingleton.getInstance()); System.out.println(ThreadLocalSingleton.getInstance()); }).start(); } TimeUnit.SECONDS.sleep(2); }
}
|
单例模式要点
- 私有化构造器,防直接实例化
- 保证线程安全
- 按需选择延迟加载和非延时加载
- 防止序列化和反序列化破坏单例
- 防御反射攻击单例