当前位置:   article > 正文

Java设计模式:单例模式(附实例代码)每天一学设计模式_//方式1: public static synchronized lazyone getinsta

//方式1: public static synchronized lazyone getinstance1() if(instance == nu

1.单例模式:确保一个类只有一个实例,并提供一个全局访问点来访问这个唯一的实例。

对于单例模式,在单例类的内部创建它的唯一实例,并通过静态方法getInstance()让客户端可以使用它的唯一实例;为了防止在外部对单例类实例化,将其构造函数的可见性设置为private,在单例类内部定义一个singleton类型的静态对象作为供外部共享访问的唯一实例

  1. /**这种单例模式示例有问题存在,下文中会做完善,欢迎思考*/
  2. public class Singleton{
  3. private static Singleton instance = null;//静态私有成员变量
  4. //私有构造函数
  5. private Singleton(){
  6. }
  7. //静态共有工厂方法,返回唯一实例
  8. public static Singleton getInstance(){
  9. if(instance == null)
  10. instance = new Singleton();
  11. return instance;
  12. }
  13. }
  14. /**为了测试单例类创建对象的唯一性,可以编写以下的客户测试代码*/
  15. public class Client{
  16. public static void main(String args[]){
  17. Singleton sl = Singleton.getInstance();
  18. Signleton s2 = Singleton.getInstance();
  19. //判断两个对象是否相同
  20. if(s1 == s2){
  21. System.out.pringln("两个对象是相同实例");
  22. }
  23. else{
  24. System.out.pringln("两个对象是不同实例");
  25. }
  26. }
  27. }

2.实例描述:一家四口人,只有一个碗,每个人想吃饭都只能用这一个碗来单独吃饭。这个碗就设计为单例类,这个碗中有个吃饭的单子,每次都会随机选一个人来吃饭。 

  1. /**实例代码,这种单例模式有存在问题,下文会做完善,欢迎同学用完善后的单例模式把此示例再做修改*/
  2. /**创建单例类*/
  3. import java.util.*;
  4. public class Bowl{
  5. //私有静态成员变量,存储唯一实例
  6. private static Bowl instance = null;
  7. //人的集合
  8. private List personList = null;
  9. //私有构造函数
  10. private Bowl(){
  11. personList = new ArrayList();
  12. }
  13. //公有静态成员方法,返回唯一实例
  14. public static Bowl getBowl(){
  15. if(instance == null){
  16. instance = new Bowl();
  17. }
  18. return instance;
  19. }
  20. //增加吃饭的人
  21. public void addPerson(String person){
  22. personList.add(person);
  23. }
  24. //删除服务器
  25. public void removePerson(String person){
  26. personList.remove(person);
  27. }
  28. //使用Random类随机获取服务器
  29. public String getPerson(){
  30. Random random = new Random();
  31. int i = random.nextInt(personList.size());
  32. return(String)personList.get(i);
  33. }
  34. }
  35. /**客户端测试类*/
  36. public class Client{
  37. public static void main(String args[]){
  38. //创建四个Bowl碗对象
  39. Bowl Bowl1,Bowl2,Bowl3,Bowl4;
  40. Bowl1 = Bowl.getBowl();
  41. Bowl2 = Bowl.getBowl();
  42. Bowl3 = Bowl.getBowl();
  43. Bowl4 = Bowl.getBowl();
  44. //判断Bowl碗是否想同
  45. if(Bowl1== Bowl2&Bowl2== Bowl3&Bowl3 == Bowl4){
  46. System.out.println("碗具有唯一性");
  47. }
  48. //增加吃饭的人
  49. Bowl1.addPerson("Person1");
  50. Bowl2.addPerson("Person2");
  51. Bowl3.addPerson("Person3");
  52. Bowl4.addPerson("Person4");
  53. //模拟客户端请求的分发,如果输出结果为同一个person,可以将i适当放大
  54. //例如改为i<100
  55. for(int i = 0;i<10;i++){
  56. String person = Bowl1.getPerson();
  57. System.out.println("分发请求到吃饭的人:"+person);
  58. }
  59. }
  60. }

输出结果如下图:

3.饿汉单例模式

  1. public class EagerSingleton{
  2. private static final EagerSingleton instance = new EagerSingleton();
  3. private EagerSingleton(){}
  4. public static EagerSingleton getInstance(){
  5. return instance;
  6. }
  7. }

此种方式虽然是线程安全的,但并不是懒加载,也就是程序中无论用不用的到这样的类都会在程序启动之初就进行创建。这样就会导致类似下载一个游戏,可能地图没有打开,程序已经把所有的地图实力化了,手机的体验是一开游戏内存就满了,手机卡的不成样子。

4.懒汉单例模式

  1. /**为了确保线程安全,加了synchronized锁*/
  2. public class LazySingleton{
  3. private static LazySingleton instance = null;
  4. private LazySingleton(){};
  5. //使用synchronized关键字对方法加锁,确保任意时刻只有一个线程可执行该方法
  6. public static synchronized LazySingleton getInstance(){
  7. if(instance==null){
  8. instance = new LazySingleton();
  9. }
  10. return instance;
  11. }
  12. }
  13. /**此模式虽然安全,但是由于把锁加到方法上后,所有的访问都会因为需要锁占用导致资源的浪费,如果不是特殊情况不建议使用此种单例模式*/

改进

  1. ···
  2. public static LazySingleton getInstance(){
  3. if(instance == null){
  4. synchronized(LazySingleton.class){
  5. instance=new LazySingleton();
  6. }
  7. }
  8. return instance;
  9. }
  10. ···

再次改进:使用双重检查锁定来实现懒汉式单例模式。volatile修饰的成员变量可以确保多个线程能够正确处理,但是volatile关键字会屏蔽Java虚拟机所做的一切代码优化,所以可能会导致系统的运行效率降低。上面存在的问题:单例对象不唯一的情况。例如在某一瞬间,线程A和线程B都在调用getInstance()方法,此时instance对象为null值,均能通过instance==null的判断。由于实现了synchronized加锁机制,线程A执行完毕后进入synchronized锁定的代码中执行实例创建代码。但是当A执行完毕时线程B并不知道实例已经创建,将继续创建新的实例,导致产生多个实例,违背了单例模式的设计思想,因此需要进一步改进,在synchronized中再进行一次instance==null的判断,称为双重检查锁定。

  1. public class LazySingleton{
  2. private volatile static LazySingleton instance = null;
  3. private LazySingleton(){}
  4. public static LazySingleton getInstance(){
  5. //第一重判断
  6. if(instance == null){
  7. //锁定代码块
  8. synchronized (LazySingleton.class){
  9. //第二重判断
  10. if(instance == null){
  11. instance = new LazySingleton();//创建单例实类
  12. }
  13. }
  14. }
  15. rerurn instance;
  16. }
  17. }

5.使用静态内部类实现单例模式

Java语言通过Initialization on Demand Holder(IoDH)技术来实现单例模式。需要在单例类中新加一个静态内部类,在该内部类中创建单例对象,再对该单例对象通过getInstance()方法返回给外部使用。

  1. public class Singleton{
  2. private Singleton(){}
  3. //静态内部类
  4. private static class HolderClass{
  5. private final static Singleton instance = new Singleton();
  6. }
  7. public static Singleton getInstance(){
  8. return HolderClass.instance;
  9. }
  10. public static void main(String args[]){
  11. Singleton s1,s2;
  12. s1 = Singleton.getInstance();
  13. s2 = Singleton.getInstance();
  14. System.out.println(s1 == s2);
  15. }
  16. }

优点解决了懒汉模式和恶汉模式的缺点。缺点是与编程语言本身的特性相关,很多面向对象的语言都不支持IoDH。

6.CAS(AtomicReference)(线程安全)此方法用的不多。

7.枚举单例模式(线程安全)此方法用的不多。

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号