单例模式

单例模式

一个类只能有一个实例,并提供一个全局访问点

  1. 私有的构造方法
  2. 私有的静态变量存储实例对象
  3. 提供一个静态方法供外部获取实例对象
单例模式 singleton pattern

注意

  1. 单例创建要保证线程安全
  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
68
69
70
71
72
73
74
75
76
77

// 类加载阶段完成创建
// 1. 线程安全
// 2. 实时创建
public class Singleton {

private static final Singleton instance = new Singleton();

private Singleton() {
}

public static Singleton getInstace() {
return instance;
}
}


//获取对象时创建
// 1. 延迟创建
// 2. 加锁保障线程安全
public class Singleton {

private static Singleton instance;

private Singleton() {
}

// 加锁保障线程安全,可以优化一下只对创建时加锁
public static synchronized Singleton getInstace() {
if (instance == null) {
instance = new Singleton();
}
return instance;
}
}

// 获取对象时加锁
// 1. 延迟创建
// 2. 线程安全
public class Singleton {

private static Singleton instance;

private Singleton() {
}

public static Singleton getInstace() {

if (instance == null) {
// 创建时加锁,锁类
synchronized (Singleton.class) {
instance = new Singleton();
}
}
return instance;
}
}

// 通过内部类来创建,和第一种类似,但是内部类不会在外部类加载的时候创建,只有在使用到的时候才会创建
// 1. 延迟创建
// 2. 线程安全
public class Singleton {

private static class SingletonInner {
private static final Singleton instance = new Singleton();
}

public static Singleton getInstace() {
return SingletonInner.instance;
}
}


// 枚举,利用枚举特性创建,本质上和第一种类似
public enum Singleton{
INSTANCE;
}