我是靠谱客的博主 幸福洋葱,最近开发中收集的这篇文章主要介绍笔试Java实现单例设计模式(最优方案),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

    public class SingletonTest  
    {  
        private SingletonTest()  //构造函数私有化
        {  
        }  

        private static class Inner   //私有的静态内部类  
        {  
            static SingletonTest singletonTest = new SingletonTest();  
        }  

        public static SingletonTest getInstance()  
        {  
            return Inner.singletonTest;  
        }  
    }  

因为静态内部类只有在使用的时候才会被Classloader 加载。而JVM 类加载的时候又是线程安全的。


其他实现方法:

最常见(懒汉式)【线程不安全】:

    public class SingletonTest  
    {  
        private static SingletonTest singletonTest = null;  

        private SingletonTest()  
        {  
        }  

        public static SingletonTest getInstance()  
        {  
            //在类的静态方法中实例化单例  
            if (null == singletonTest)  
            {  
                singletonTest = new SingletonTest();  
            }  

            return singletonTest;  
        }  
    }  



饿汉式

    public class SingletonTest  
    {  
            //在类里面实例化静态成员变量  
        private static SingletonTest singletonTest = new SingletonTest();  

        private SingletonTest()  
        {  
        }  

        public static SingletonTest getInstance()  
        {  
            return singletonTest;  
        }  
    }  



双重检查锁

public static Singleton getInstance()
{
  if (instance == null)
  {
    synchronized(Singleton.class) {  
      if (instance == null)          
        instance = new Singleton();
    }
  }
  return instance;
}

双重检查锁定背后的理论是完美的。不幸地是,现实完全不同。双重检查锁定的问题是:并不能保证它会在单处理器或多处理器计算机上顺利运行。

最后

以上就是幸福洋葱为你收集整理的笔试Java实现单例设计模式(最优方案)的全部内容,希望文章能够帮你解决笔试Java实现单例设计模式(最优方案)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部