zoukankan      html  css  js  c++  java
  • 单例模式实现

    1. 静态内部类(static nested class) 优先考虑
    2.  
    3. public class LazySingleton{  
    4.     private LazySingleton(){}  
    5.   
    6.     private static class Nested{  
    7.         private static final LazySingleton single = new LazySingleton();  
    8.     }  
    9.   
    10.     public static LazySingleton getInstance(){  
    11.         return Nested.single;  
    12.     }  
    13. }  

    双重检查锁定(DCL)

    1. public class LazySingleton{  
    2.     private LazySingleton(){}  
    3.   
    4.     private static volatile LazySingleton single = null;  
    5.   
    6.     public static LazySingleton getInstance(){  
    7.         if(single == null){  
    8.             synchronized (LazySingleton.class){  
    9.                 if(single == null){  
    10.                     single = new LazySingleton();   //① 非原子操作  
    11.                 }  
    12.             }  
    13.         }   
    14.         return single;  
    15.     }  
    16. }  
  • 相关阅读:
    vue-router 动态路由匹配
    vue-router $route
    vuex mapActions
    vuex mapMutations 使用
    ES6 动态计算属性名
    vuex Payload 荷载
    vuex mapGetters
    vuex mapState使用
    Vue 引入ElementUI 2.0.11:依赖未发现的问题
    vuex 深入理解
  • 原文地址:https://www.cnblogs.com/sjqq/p/7486807.html
Copyright © 2011-2022 走看看