大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
第一种:饿汉式
/** * Created with IntelliJ IDEA. * * @author: 宸濯 * Date: 2021/08/18 8:21 * Description:单例模式的设计(饿汉式) * 1.构造方法私有化 * 2.在静态语句块实例化 * 3.提供调用实例对象的方法 * 4.空间换时间,不管有没有调用方法,实例都创建了 * Version: V1.0 */
public class SingletonOne {
private static final int THREADS=100;
private static SingletonOne instance;
/** * 构造方法私有化 */
private SingletonOne(){
}
static {
instance=new SingletonOne();
}
public static SingletonOne getInstance(){
return instance;
}
public static void main(String[] args) {
for (int i=0;i<THREADS;i++){
new Thread(
()-> System.out.println(getInstance().hashCode())
).start();
}
}
}
第二种:懒汉式
/** * Created with IntelliJ IDEA. * @author: 宸濯 * Description:单例模式设计(懒汉式) * 1.构造方法私有化 * 2.在调用时判断是否实例化 * 3.时间换空间,调用方法时创建实例对象 */
public class SingletonTow {
private static SingletonTow instance;
private static final int THREADS=100;
private SingletonTow(){
}
public static SingletonTow getInstance(){
if (instance==null){
instance=new SingletonTow();
}
return instance;
}
public static void main(String[] args) {
for (int i=0;i<THREADS;i++){
new Thread(
()-> System.out.println(getInstance().hashCode())
).start();
}
}
}
第三种:双检锁式
/** * Created with IntelliJ IDEA. * @author: 宸濯 * Description:单例模式设计(双检锁懒汉式) * 1.构造方法私有化 * 2.在调用时判断是否实例化 * 3.时间换空间,调用方法时创建实例对象 */
public class SingletonTow {
/** * volatile修饰符防止指令重排序 */
private static volatile SingletonTow instance;
private static final int THREADS=100;
private SingletonTow(){
}
public static SingletonTow getInstance(){
if (instance==null){
synchronized (SingletonTow.class){
//双重判定,防止高并发,不过会导致指令重排序
if (instance==null){
instance=new SingletonTow();
}
}
}
return instance;
}
public static void main(String[] args) {
for (int i=0;i<THREADS;i++){
new Thread(
()-> System.out.println(getInstance().hashCode())
).start();
}
}
}
第四种:静态内部类式
/** * Created with IntelliJ IDEA. * * @author: 宸濯 * Description:设计单例模式 * 1.构造方法私有化 * 2.静态内部类实例化对象 * 3.静态内部类只会被加载一次,类加载的初始化阶段是单线程的,没有高并发带来的冲突 */
public class SingletonThree {
/** * 声明线程数 */
private static final int THREADS=100;
private static class Inner{
private static final SingletonThree INSTANCE=new SingletonThree();
}
private SingletonThree(){
}
public static SingletonThree getInstance(){
return Inner.INSTANCE;
}
public static void main(String[] args) {
for (int i=0;i<THREADS;i++){
new Thread(
()-> System.out.println(SingletonThree.getInstance().hashCode())
).start();
}
}
}
第五种:枚举类型
/** * Created with IntelliJ IDEA. * @author : 宸濯 */
public enum SingletonFour {
//枚举类型设计单例模式
SINGLETON_FOUR;
public void test(){
System.out.println("hello world");
}
}
public class Main {
public static void main(String[] args) {
SingletonFour.SINGLETON_FOUR.test();
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/169682.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...