设计模式之单例模式的几种写法——java
2019-08-16 09:24:29来源:博客园 阅读 ()
设计模式之单例模式的几种写法——java
对于设计模式的使用场景和好处,之前有介绍一篇,今天主要是单例模式的编写方式,直接看代码吧
-
单例模式之饿汉模式,不会懒加载。线程安全
/**
* @Author wangtao
* @Description 单例模式之饿汉模式,不会懒加载。线程安全
* @Date 2019-5-22 12:32
* @优点 线程安全,简单易实现
* @缺点 在进行类加载的时候就创建好实例,会占用内存
**/
class SingletonHungry{
//私有构造函数
private SingletonHungry(){}
//创建实例
private static final SingletonHungry singletonHungry=new SingletonHungry();
//提供获取公有方法
public static SingletonHungry getInstance(){
return singletonHungry;
}
}
-
单例模式之懒汉模式,会懒加载。线程不安全
/**
* @Author wangtao
* @Description 单例模式之懒汉模式,会懒加载。线程不安全
* @Date 2019-5-22 12:32
* @优点
* @缺点
**/
class SingletonLazy {
//私有构造函数
private SingletonLazy() {}
//创建实例
private static SingletonLazy singletonLazy;
//提供获取公有方法
public static SingletonLazy getInstance() {
if(singletonLazy==null){
singletonLazy=new SingletonLazy();
}
return singletonLazy;
}
}
-
单例模式之懒汉模式,会懒加载。线程安全,同步方法
/**
* @Author wangtao
* @Description 单例模式之懒汉模式,会懒加载。线程安全,同步方法
* @Date 2019-5-22 12:32
* @优点
* @缺点
**/
class SingletonLazyThread {
//私有构造函数
private SingletonLazyThread() {}
//创建实例
private static SingletonLazyThread singletonLazyThread;
//提供获取公有方法
public static synchronized SingletonLazyThread getInstance() {
if(singletonLazyThread==null){
singletonLazyThread=new SingletonLazyThread();
}
return singletonLazyThread;
}
}
-
单例模式之懒汉模式,会懒加载。线程安全,同步代码块(文本称为:双重锁)
/**
* @Author wangtao
* @Description 单例模式之懒汉模式,会懒加载。线程安全,同步代码块(文本称为:双重锁)
* @Date 2019-5-22 12:32
* @优点
* @缺点
**/
class SingletonLazyThread2 {
//私有构造函数
private SingletonLazyThread2() {}
//创建实例
private static SingletonLazyThread2 singletonLazyThread2;
//提供获取公有方法
public static SingletonLazyThread2 getInstance() {
synchronized(SingletonLazyThread2.class){
if(singletonLazyThread2==null){
singletonLazyThread2=new SingletonLazyThread2();
}
}
return singletonLazyThread2;
}
}
-
单例模式之饿汉模式优化,会懒加载。线程安全,使用静态内部类
/**
* @Author wangtao
* @Description 单例模式之饿汉模式优化,会懒加载。线程安全,使用静态内部类
* @Date 2019-5-22 12:32
* @优点 懒加载,在进行加载内部类的时候才会初始化对象,线程安全,是饿汉模式的优化,避免了直接的实例化占用内存空间的问题
* @缺点 只使用于静态的方法
**/
class SingletonInnerClass{
//私有构造函数
private SingletonInnerClass() {}
//创建实例
private static class SingletonInner{
private static final SingletonInnerClass singletonInnerClass =new SingletonInnerClass();
}
//提供获取公有方法
public static SingletonInnerClass getInstance() {
return SingletonInner.singletonInnerClass;
}
}
-
单例模式之枚举,不会懒加载。线程安全,自动序列化
/**
* @Author wangtao
* @Description 单例模式之枚举,不会懒加载。线程安全,自动序列化
* @Date 2019-5-22 12:32
* @优点
* @缺点
**/
enum SingletonEnum{
INSTANCE;
public void say(){
System.out.println("枚举类的方法");
}
}
原文链接:https://www.cnblogs.com/gdhzdbh/p/11101793.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 设计模式-委派/策略模式 2020-06-09
- 深入理解:设计模式中的七大设计原则 2020-06-07
- 设计模式---类之间的关系知多少 2020-06-07
- 你与面试官所了解的单例模式并不一样! 2020-06-06
- 高手眼中的观察者模式有什么不一样 2020-06-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash