java 懒汉式、饿汉式单例模式 不含多线程的情况
//饿汉式 提前生成了单例对象
class Singleton{
private static final Singleton instance=new Singleton(); private Singleton(){} public static Singleton getInstance(){
return instance;
} } //懒汉式 调用的时候才会生成对象
class Singleton11
{
private static Singleton11 instance;
private Singleton11(){} public static Singleton11 getInstance(){
if (instance==null)
{
instance=new Singleton11();
}
return instance;
}
} //多例模式
class Color
{
private static final Color Red=new Color("红色");
private static final Color Green=new Color("绿色");
private static final Color Blue=new Color("蓝色"); private String color;
private Color(String color){
this.color=color;
} public static Color getInstance(String color){
switch (color)
{
case "红色": return Red;
case "绿色": return Green;
case "蓝色": return Blue;
default: return null; }
} public String print(){
return this.color;
}
} public class TestSingleton{
public static void main(String[] args){
Singleton A=Singleton.getInstance();
Singleton B=Singleton.getInstance();
System.out.println(A==B); Singleton11 A11=Singleton11.getInstance();
Singleton11 B11=Singleton11.getInstance();
System.out.println(A11==B11); Color red=Color.getInstance("红色");
Color green=Color.getInstance("绿色");
Color blue=Color.getInstance("蓝色"); System.out.println(red.print());
System.out.println(green.print());
System.out.println(blue.print());
}
}
多线程的情况:
class Singleton{
private static volatile Singleton instance=null; //直接操作主内存 比操作副本效果好
private Singleton(){
System.out.println(Thread.currentThread().getName()+"******实例化Singleton******");
}
public static Singleton getInstance(){
if (instance==null){
synchronized (Singleton.class){ //此处同步的是new Singleton() 提升多线程效率
if (instance==null){ //此处的判断 对应上面的if (instance==null) 多个线程进来
instance=new Singleton();
}
}
}
return instance;
}
public void print(){
System.out.println("wwww.mldn.com");
}
} public class SingleInstance {
public static void main(String[] args) {
// Singleton s=Singleton.getInstance();
// s.print();
// Singleton ss=Singleton.getInstance();
// ss.print();
// System.out.println(s==ss);
for (int i=0;i<3;i++){
new Thread(()-> System.out.println(Singleton.getInstance()),"单例"+i).start();
}
}
}
java 懒汉式、饿汉式单例模式 不含多线程的情况的更多相关文章
- java中的单例模式(懒汉式+饿汉式)
什么是单例模式: 单例模式既只能在自己本类中创建有且唯一的一个实例(姑且不考虑映射的情况)通过方法将该实例对外公开 第一种:单例模式-懒汉式 既调用getInstance()方法返回实例之前判断有没有 ...
- Spring -11 -单例设计模式 -懒汉式/饿汉式(idea默认的)
单例设计模式 作用: 在应用程序有保证最多只能有一个实例. 好处: 2.1 提升运行效率. 2.2 实现数据共享. 案例:application 对象 懒汉式 3.1 对象只有被调用时才去创建. 3. ...
- scala:分别使用懒汉式和饿汉式实现单例模式
在java中,单例模式需要满足以下要求: 构造方法私有化,使得本类之外的地方不能使用构造方法new出对象 提供私有静态属性,接收单例对象 公共的.静态的getInstance方法,便于外界拿到单例对象 ...
- java设计模式单例模式 ----懒汉式与饿汉式的区别
常用的五种单例模式实现方式 ——主要: 1.饿汉式(线程安全,调用率高,但是,不能延迟加载.) 2.懒汉式(线程安全,调用效率不高,可以延时加载.) ——其他: 1.双重检测锁式(由于JVM底层内部模 ...
- JAVA单例模式:懒汉式,饿汉式
今天复习了一下java的单例模式,写了懒汉式和饿汉式的实现例子.代码如下: 1.懒汉式单例 package com.lf.shejimoshi; /** * @classDesc: 类描述:(懒汉式单 ...
- 关于Java单例模式中懒汉式和饿汉式的两种类创建方法
一. 什么是单例模式 因程序需要,有时我们只需要某个类同时保留一个对象,不希望有更多对象,此时,我们则应考虑单例模式的设计. 二. 单例模式的特点 1. 单例模式只能有一个实例. 2. 单例类必须创建 ...
- java基础10 单例模式之饿汉式和懒汉式单例
前言: 软件行业中有23中设计模式 单例模式 模版模式 装饰者模式 观察者模式 工厂模式 ........... 单例模式 1. 单例模式包括 1.1 饿汉式单例 1.2 ...
- Java单例模式--------懒汉式和饿汉式
单件模式用途:单件模式属于工厂模式的特例,只是它不需要输入参数并且始终返回同一对象的引用.单件模式能够保证某一类型对象在系统中的唯一性,即某类在系统中只有一个实例.它的用途十分广泛,打个比方,我们开发 ...
- 牛客网Java刷题知识点之什么是单例模式?解决了什么问题?饿汉式单例(开发时常用)、懒汉式单例(面试时常用)、单例设计模式的内存图解
不多说,直接上干货! 什么是单例设计模式? 解决的问题:可以保证一个类在内存中的对象唯一性,必须对于多个程序使用同一个配置信息对象时,就需要保证该对象的唯一性. 如何保证? 1.不允许其他程序用new ...
随机推荐
- node 单例
ScriptManager.getInstance = function () { if (_instance != null) { return _instance; } else { return ...
- mybatis对实体的引用必须以 ';' 分隔符结尾
今天在使用 generate 时(问题起源),由于扫描了mysql所有库下的user表,因此添加参数 nullCatalogMeansCurrent=true 添加改参数解决的原因 查看 但是添加后出 ...
- Python微服务实践-集成Consul配置中心
A litmus test for whether an app has all config correctly factored out of the code is whether the co ...
- 九、Spring中使用@Value和@PropertySource为属性赋值
首先回顾下在xml中我们是如何为spring的bean进行属性赋值呢? 大体是这样的 <bean id="person" class="com.atguigu.be ...
- DHCP配置实例(含DHCP中继代理)
https://blog.51cto.com/yuanbin/109759. DHCP配置实例(含DHCP中继代理) 某公司局域网有192.168.1.0/24和192.168.2.0/24这两个 ...
- Robot Framework 读取控制面板安装的程序,判断某个程序是否已经安装
wmic /output:D:\\DOAutomationTest\\automation_do_robotframework\\installList.txt product get name
- Pandas的基础操作(一)——矩阵表的创建及其属性
Pandas的基础操作(一)——矩阵表的创建及其属性 (注:记得在文件开头导入import numpy as np以及import pandas as pd) import pandas as pd ...
- wireshark抓包新手教程(win10空包问题)
首先下载官网的wireshark,下载地址https://www.wireshark.org/ 下载完按照提示一步步安装 安装完打开wireshark,安装中文包 安装之前首先讲一下win10截图工具 ...
- [洛谷P5431]【模板】乘法逆元2
题目大意:给定$n(n\leqslant5\times10^6)$个正整数$a_i$,和$k$.求:$$\sum_{i=1}^n\dfrac{k^i}{a_i}\pmod p$$题解:$$令P=\pr ...
- asp.net core 一个中小型项目实战的起手式——Swagger配置
交流群:863563315 一.Swagger是什么 Swagger 是一款RESTFUL接口的.基于YAML.JSON语言的文档在线自动生成.代码自动生成的工具. 二.如何在项目中加入Swagger ...