//静态内部类单列模式
public class Singleton{
private static class SingletonHolder {
private static final Singleton SINGLETON = new Singleton();
}
private Singleton() {}
public static Singleton getInstance() {
return SingletonHolder.SINGLETON;
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>