摘要:懒汉式单例模式单例类测试类输出实现方式构造方法私有化。存在问题线程不安全,如果多个线程同时访问,仍会产生多个实例对象。
一般实现
创建执行方法
public class WithoutSingleton { public static void withoutSingletonInfo(WithoutSingleton withoutSingleton){ System.out.println("WithoutSingleton.hashCode = " + withoutSingleton.hashCode()); } }
测试类
public static void main(String[] args) { WithoutSingleton withoutSingleton = new WithoutSingleton(); WithoutSingleton.withoutSingletonInfo(withoutSingleton); WithoutSingleton withoutSingleton2 = new WithoutSingleton(); WithoutSingleton.withoutSingletonInfo(withoutSingleton2); WithoutSingleton withoutSingleton3 = new WithoutSingleton(); WithoutSingleton.withoutSingletonInfo(withoutSingleton3); }
输出
WithoutSingleton.hashCode = 2083479002 WithoutSingleton.hashCode = 163238632 WithoutSingleton.hashCode = 1215070805
问题
每次生成的类的实例对象都是不同的,但是在一些特定的场合,需要每次返回的实例对象都是同一个,如:sping中创建bean。
懒汉式单例模式
单例类
public class LazySingleton { private static LazySingleton lazySingleton = null; private LazySingleton(){ } public static LazySingleton getInstance(){ if(lazySingleton == null){ lazySingleton = new LazySingleton(); } return lazySingleton; } public static void singletonInfo(){ System.out.println("lazySingleton.hashCode = " + lazySingleton.hashCode()); } }
测试类:
public static void main(String[] args) { LazySingleton lazySingleton = LazySingleton.getInstance(); lazySingleton.singletonInfo(); LazySingleton lazySingleton2 = LazySingleton.getInstance(); lazySingleton2.singletonInfo(); LazySingleton lazySingleton3 = LazySingleton.getInstance(); lazySingleton3.singletonInfo(); }
输出:
lazySingleton.hashCode = 1110594262 lazySingleton.hashCode = 1110594262 lazySingleton.hashCode = 1110594262
实现方式
构造方法私有化。
存在问题
线程不安全,如果多个线程同时访问,仍会产生多个实例对象。
解决方法
1.在getInstance()方法上同步synchronized(同步对性能有影响)
2.双重检查锁定
3.静态内部类
饿汉式单例模式
代码实现
public class HungrySingleton { private static HungrySingleton hungrySingleton = new HungrySingleton(); private HungrySingleton(){ } public static HungrySingleton getInstance(){ return hungrySingleton; } public static void singletonInfo(){ System.out.println("hungrySingleton.hashCode = " + hungrySingleton.hashCode()); } }
输出
hungrySingleton.hashCode = 1977385357 hungrySingleton.hashCode = 1977385357 hungrySingleton.hashCode = 1977385357
说明
静态成员变量在类加载的时候就会创建实例对象,解决了线程不安全问题
缺点
类加载时就创建实例对象,会占用系统内存,如果存在大量单例类(一般不会出现),或者创建的类并没有使用,会造成内存浪费。
源码
https://github.com/Seasons20/DisignPattern.git
END
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/69245.html
摘要:如果需要防范这种攻击,请修改构造函数,使其在被要求创建第二个实例时抛出异常。单例模式与单一职责原则有冲突。源码地址参考文献设计模式之禅 定义 单例模式是一个比较简单的模式,其定义如下: 保证一个类仅有一个实例,并提供一个访问它的全局访问点。 或者 Ensure a class has only one instance, and provide a global point of ac...
摘要:在设计模式一书中,将单例模式称作单件模式。通过关键字,来保证不会同时有两个线程进入该方法的实例对象改善多线程问题为了符合大多数程序,很明显地,我们需要确保单例模式能在多线程的情况下正常工作。 在《Head First 设计模式》一书中,将单例模式称作单件模式。这里为了适应大环境,把它称之为大家更熟悉的单例模式。 一、了解单例模式 1.1 什么是单例模式 单例模式确保一个类只有一个实例,...
摘要:总结单例是运用频率很高的模式,因为客户端没有高并发的情况,选择哪种方式并不会有太大的影响,出于效率考虑,推荐使用和静态内部类实现单例模式。 单例模式介绍 单例模式是应用最广的模式之一,也可能是很多人唯一会使用的设计模式。在应用单例模式时,单例对象的类必须保证只用一个实例存在。许多时候整个系统只需要一个全局对象,这样有利于我么能协调整个系统整体的行为。 单例模式的使用场景 确保某个类有且...
摘要:双重检查锁单例模式懒汉单例模式中,我们并不需要整个方法都是同步的,我们只需要确保再创建的时候,进行同步即可。单例模式的缺点优点在开头已经说明了,单例模式的缺点在于它一般没有接口,扩展困难,基本上修改源代码是扩展单例模式的唯一方法。 单例模式 定义: 确保某一个类只有一个实例对象,并且该对象是自行实例化的,通过统一的接口向整个系统提供这个实例对象。 使用场景: 避免产生多个对象消耗过多的...
阅读 1184·2023-04-25 20:31
阅读 3688·2021-10-14 09:42
阅读 1460·2021-09-22 16:06
阅读 2598·2021-09-10 10:50
阅读 3490·2021-09-07 10:19
阅读 1752·2019-08-30 15:53
阅读 1151·2019-08-29 15:13
阅读 2803·2019-08-29 13:20