单例模式
Java中的单例
饿汉
1 | public class Single { |
懒汉
1 | private static Single instance= null; |
懒汉线程安全
1 | public static synchronized Single getInstance() { |
双检验
1 | public static Single getInstance() { |
登记静态
1 | private static class SingleHolder { |
枚举
1 |
|
JavaScript中的单例
闭包实现单例
1 |
|
正常单例
1 | let A = function () { |