备忘:最优单例模式

  1. public class QuestionManager {   
  2.   
  3.     /**  
  4.      * 提供单例对象的静态内部类  
  5.      */  
  6.     private static class SingletonHolder {   
  7.         public static QuestionManager instance = new QuestionManager();   
  8.     }   
  9.   
  10.     /**  
  11.      * 获取对象实例  
  12.      * @return  
  13.      */  
  14.     public static QuestionManager getInstance() {   
  15.         return SingletonHolder.instance;   
  16.     }   
  17.   
  18. }  

你可能感兴趣的:(备忘:最优单例模式)