单例模式

解决某些场景下只需要创建该类的一个实例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class test{
// 定义类成员变量
private static test obj;

// 隐藏构造器,避免实例被调用
private test(){ }

// 暴露一个static方法用于创建实例
public static test setName(){
// 判断是否已经创建过了实例
if (obj == null){
test obj = new test();
}
// 将实例返回
return obj;
}
}

调用时

1
2
3
4
5
6
7
8
9
10
public class 单例模式 {
public static void main(String[] args){
// 不管怎么创建都是错的
// test a = new test();
test a = test.setName();
test b = test.setName();
System.out.println(a == b);
// 若返回true,说明两个实例引用同一个地址
}
}