黑马程序员技术交流社区

标题: 多线程 单例设计模式 安全问题 [打印本页]

作者: hanjun    时间: 2015-1-15 16:54
标题: 多线程 单例设计模式 安全问题
  1. /*
  2. 单例设计模式。


  3. */
  4. //饿汉式。
  5. /*
  6. class Single
  7. {
  8.         private static final Single s = new Single();
  9.         private Single(){}
  10.         public static Single getInstance()
  11.         {
  12.                 return s;
  13.         }
  14. }
  15. */


  16. //懒汉式

  17. class Single
  18. {
  19.         private static Single s = null;
  20.         private Single(){}


  21.         public static  Single getInstance()
  22.         {
  23.                 if(s==null)
  24.                 {
  25.                         synchronized(Single.class)
  26.                         {
  27.                                 if(s==null)
  28.                                        
  29.                                         s = new Single();
  30.                         }
  31.                 }
  32.                 return s;
  33.         }
  34. }

  35. class SingleDemo
  36. {
  37.         public static void main(String[] args)
  38.         {
  39.                 System.out.println("Hello World!");
  40.         }
  41. }
复制代码


听说这里经常考试,今天复习到这里了,分享一下,大家也注意下。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2