线程安全的单例模式
程序员文章站
2022-07-14 09:16:53
...
1. /**
2. * 单例模式
3. */
4. public class Singleton {
5. //私有构造方法
6. private Singleton () {
7. }
8. /**
9. * 静态内部类,在JVM初始化时会被加载,而只初始化这一次。保证了线程安全
10. */
11. private static class SingletonHolder {
12. public static final Singleton instance = new Singleton();
13. }
14. public static Singleton getInstance() {
15. return SingletonHolder.instance;
16. }
17. }
上一篇: Tars框架单例模式TC_Singleton的使用
下一篇: Android设计模式之单例模式