码迷,mamicode.com
首页 > 编程语言 > 详细

【JAVA面试题】设计单例模式的多线程实现

时间:2015-04-30 18:14:52      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

在阅读的过程中有任何问题,欢迎一起交流

邮箱:1494713801@qq.com   

QQ:1494713801


        单例模式是设计模式中最简单的形式之一。这一模式的目的是使得类的一个对象成为系统中的唯一实例。要实现这一点,可以从客户端对其进行实例化开始。因此需要用一种只允许生成对象类的唯一实例的机制,“阻止”所有想要生成对象的访问。使用工厂方法来限制实例化过程。这个方法应该是静态方法(类方法),因为让类的实例去生成另一个唯一实例毫无意义。

技术分享

 

代码如下:

 

[java]
  1. public class Singleton {  
  2.     private static Singleton uniqueInstance = null;  
  3.     public static Singleton instance(){  
  4.         if(uniqueInstance == null)  
  5.             uniqueInstance = new Singleton();  
  6.         return uniqueInstance;  
  7.     }  
  8. }  


以下代码既可以保证线程安全又可以提高多线程并发的效率。
[java] 
  1. public class Singleton {  
  2.     private static Singleton uniqueInstance = null;  
  3.   
  4.     public static Singleton instance() {  
  5.         if (uniqueInstance != null)  
  6.             return uniqueInstance;  
  7.         synchronized (Singleton.class) {  
  8.             if (uniqueInstance == null)  
  9.                 uniqueInstance = new Singleton();  
  10.         }  
  11.         return uniqueInstance;  
  12.     }  
  13. }   

或者这么写:

[java] 
  1. public class Singleton {  
  2.     private static Singleton uniqueInstance = null;  
  3.   
  4.     public static Singleton instance() {  
  5.         if (uniqueInstance == null) {  
  6.             synchronized (Singleton.class) {  
  7.                 if (uniqueInstance == null)  
  8.                     uniqueInstance = new Singleton();  
  9.             }  
  10.         }  
  11.         return uniqueInstance;  
  12.     }  
  13. }  

参考链接:http://blog.csdn.net/mrfly/article/details/13372441
 

 

【JAVA面试题】设计单例模式的多线程实现

标签:

原文地址:http://blog.csdn.net/u010515761/article/details/45396797

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!