This article mainly introduces the simple related information of Java singleton mode in detail, which has certain reference value. Interested friends can refer to it
1. Concept
The singleton pattern is a commonly used software design pattern. It contains only one special class called a singleton class in its core structure. The singleton mode can ensure that there is only one instance of a class in the system and that the instance is easy to access from the outside world, thereby facilitating control of the number of instances and saving system resources. If you want only one object of a certain class to exist in the system, the singleton pattern is the best solution. In my opinion, a singleton does not allow the outside world to create objects.
1.1 Concept Analysis
For singletons, from the above conceptual analysis, the following conditions should be met:
First: There can only be A singleton object;
Second: The singleton class must create its own unique instance object;
Third: This instance object can be accessed by the outside world, and the outside world cannot create it by itself object.
2. Several common methods of singleton mode
In Java, the singleton mode is generally divided into lazy man style and hungry man style. Type, and registration type, but registration type is generally less seen, so it is easy to ignore. If the author hadn't suddenly wanted to summarize it today and searched for information on the Internet, I wouldn't have noticed this. The code is posted in this way and explained below.
2.1 Hungry-style singleton class
package com.ygh.singleton; /** * 饿汉式单例类 * @author 夜孤寒 * @version 1.1.1 */ public class HungerSingleton { //将构造方法私有,外界类不能使用构造方法new对象 private HungerSingleton(){} //创建一个对象 private static final HungerSingleton lazySinleton=new HungerSingleton(); //设置实例获取方法,返回实例给调用者 public static HungerSingleton getInstance(){ return lazySinleton; } }
Write a test class to test whether the singleton is implemented:
package com.ygh.singleton; /** * 测试单例类 * * @author 夜孤寒 * @version 1.1.1 */ public class Test { public static void main(String[] args) { /* * 构造方法私有化,不能够使用下面方式new对象 */ //HungerSingleton hungerSingleton=new HungerSingleton(); //使用实例获取方法来获取对象 HungerSingleton h1=HungerSingleton.getInstance(); HungerSingleton h2=HungerSingleton.getInstance(); System.out.println(h1==h2);//true } }
As can be seen from the above: the two references of this test class are equal, which means that the two references point to the same object, and this also coincides with the singleton mode standard. Here, the hungry Chinese introduction ends.
2.2 Hungry-style singleton class
package com.ygh.singleton; /** * 懒汉式单例类 * @author 夜孤寒 * @version 1.1.1 */ public class LazySingleton { //将构造方法私有,外界类不能使用构造方法new对象 private LazySingleton(){} //创建一个对象,不为final private static LazySingleton lazySingleton=null; //设置实例获取方法,返回实例给调用者 public static LazySingleton getInstance(){ //当单例对象不存在,创建 if(lazySingleton==null){ lazySingleton=new LazySingleton(); } //返回 return lazySingleton; } }
Test class:
package com.ygh.singleton; /** * 测试单例类 * * @author 夜孤寒 * @version 1.1.1 */ public class Test { public static void main(String[] args) { /* * 构造方法私有化,不能够使用下面方式new对象 */ //LazySingleton lazySingleton=new LazySingleton(); //使用实例获取方法来获取对象 LazySingleton l1=LazySingleton.getInstance(); LazySingleton l2=LazySingleton.getInstance(); System.out.println(l1==l2);//true } }
From above It can be seen that the two references of this test class are equal, which means that the two references point to the same object, and this also conforms to the singleton pattern standard. This is the end of the lazy man introduction.
2.3 The difference between the lazy style and the hungry style
The lazy style means that when there is no object, a singleton object will be created. When there is an object, no more objects will be created. , this may not be easy to understand, but if readers are interested in learning more, they can use breakpoints in eclipse to test, add breakpoints to the content within the if curly braces of the LazySingleton class, and then in the Test class, use debug operation, this can be easily reflected. An object is created the first time, but no object is created the second time.
Hungry Chinese style is implemented by using the final keyword to create the object. When the caller needs the instance object, the created instance can be obtained through the getInstance method.
2.4 Registered singleton class
The author is not very familiar with the registered singleton class. I have posted a piece of code on the Internet for your own reference. Readers are asked to study on their own.
import java.util.HashMap; import java.util.Map; /** * 登记式单例类 * @author Administrator * */ public class RegisterSingleton { private static Map<String, RegisterSingleton> map = new HashMap<String, RegisterSingleton>(); static { RegisterSingleton single = new RegisterSingleton(); map.put(single.getClass().getName(), single); } /* * 保护的默认构造方法 */ protected RegisterSingleton() { } /* * 静态工厂方法,返还此类惟一的实例 */ public static RegisterSingleton getInstance(String name) { if (name == null) { name = RegisterSingleton.class.getName(); System.out.println("name == null" + "--->name=" + name); } if (map.get(name) == null) { try { map.put(name, (RegisterSingleton) Class.forName(name).newInstance()); } catch (InstantiationException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (ClassNotFoundException e) { e.printStackTrace(); } } return map.get(name); } /* * 一个示意性的商业方法 */ public String about() { return "Hello, I am RegSingleton."; } public static void main(String[] args) { RegisterSingleton single3 = RegisterSingleton.getInstance(null); System.out.println(single3.about()); } }
The above is the detailed content of A brief introduction to the singleton pattern in Java. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
