1)构造器私有化(防止new) 2)类的内部创建对象 3)向外暴露一个静态的公共方法,getInstance
public class SingletonTest01 {
public static void main(String[] args) {
Singleton01 instance = Singleton01.getInstance();
Singleton01 instance01 = Singleton01.getInstance();
System.out.println(instance == instance01);
System.out.println("instance,hashCode=" + instance.hashCode());
System.out.println("instance01,hashCode=" + instance01.hashCode());
}
}
class Singleton01{
private Singleton01(){};
private static Singleton01 instance = new Singleton01();
public static Singleton01 getInstance(){
return instance;
}
}
// 运行结果
true
instance,hashCode=1846274136
instance01,hashCode=1846274136
1)优点:这种写法比较简单,就是在类装载的时候就完成实例化,避免了线程同步问题
2)缺点:在类装载的时候就完成实例化,没有达到懒加载的效果。如果从始至终从未使用过这个实例,则会造成内存的浪费
3)这种方式基于classloader机制避免了多线程的同步问题,不过,instance在类装载时就实例化,在单例模式种大多数都是调用getInstance方法,但是导致类装载的原因都很多种,因为不能确定有其他的方式(或者其他的静态方法)大致类装载,这时候初始化instance就没有达到lazy loading的效果