单例模式——懒汉式的线程安全问题解决
2022/4/22 23:15:10
本文主要是介绍单例模式——懒汉式的线程安全问题解决,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在单例模式的懒汉式中会出现线程不安全的情况,可使用以下两种方法解决:
方法一:同步函数:
代码:
1 private static Bank instance = null; 2 3 public static synchronized Bank getInstance() {//解决线程不安全问题(法一) 4 if (instance == null) { 5 instance = new Bank(); 6 } 7 return instance; 8 }
方法二:同步代码块
1 public static Bank getInstance1() {//方法二(效率稍差:会产生大量线程的无效排队) 2 synchronized (Bank.class) { 3 if (instance == null) { 4 instance = new Bank(); 5 } 6 return instance; 7 } 8 } 9 10 //改进方法二(去除无效排队的问题) 11 public static Bank getInstance2() { 12 if (instance == null) { 13 synchronized (Bank.class) { 14 if (instance == null) { 15 instance = new Bank(); 16 } 17 } 18 } 19 return instance; 20 }
这篇关于单例模式——懒汉式的线程安全问题解决的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略