Java 静态内部类单列模式
提问人:刘旭39发布时间:2020-11-26
//静态内部类单列模式
public class Singleton{
private static class SingletonHolder {
private static final Singleton SINGLETON = new Singleton();
}
private Singleton() {}
public static Singleton getInstance() {
return SingletonHolder.SINGLETON;
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>