分类
分类
设计模式
简单说明
创建型模式 Creational Patterns
单例模式(Singleton)
确保类只有一个实例,并提供全局访问点。
工厂方法(Factory Method)
定义创建对象的接口,由子类决定实例化。
抽象工厂(Abstract Factory)
创建一系列相关对象的工厂。
建造者(Builder)
分步构造复杂对象。
原型模式(Prototype)
通过克隆创建新对象。
结构型模式 Structural Patterns
适配器(Adapter)
将不兼容的接口转换为兼容接口。
桥接(Bridge)
将抽象与实现分离。
组合(Composite)
将对象组织成树形结构。
装饰者(Decorator)
动态扩展对象功能。
外观(Facade)
为复杂子系统提供简单接口。
享元(Flyweight)
共享细粒度对象以节省资源。
代理(Proxy)
控制对对象的访问。
行为型模式 Behavioral Patterns
责任链(Chain of Responsibility)
将请求沿处理链传递。
命令(Command)
将请求封装为对象。
解释器(Interpreter)
定义语言的解释规则。
迭代器(Iterator)
顺序访问集合元素。
中介者(Mediator)
通过中介协调对象交互。
备忘录(Memento)
保存和恢复对象状态。
观察者(Observer)
对象状态变化时通知依赖者。
状态(State)
根据状态改变对象行为。
策略(Strategy)
定义可互换的算法家族。
模板方法(Template Method)
定义算法骨架,子类实现细节。
访问者(Visitor)
在不修改类的情况下增加新操作。
扩展模式 Extended Patterns
依赖注入(Dependency Injection)
通过外部注入依赖,解耦组件。
发布-订阅(Publish-Subscribe)
事件驱动的观察者变种。
模块模式(Module Pattern)
封装代码,管理私有/公有成员。
MVC(Model-View-Controller)
分离数据(Model)、界面(View)和逻辑(Controller)。
MVP(Model-View-Presenter)
View 和 Presenter 交互,Model 隔离数据。
MVVM(Model-View-ViewModel)
通过 ViewModel 绑定 Model 和 View。
仓储模式(Repository Pattern)
封装数据访问逻辑。
服务定位器(Service Locator)
集中管理服务实例的获取。
事件溯源(Event Sourcing)
通过事件记录对象状态。
图示 graph LR
A[设计模式 Design Patterns]
A --> B[创建型模式 Creational Patterns]
B --> B1[单例模式 Singleton]
B --> B2[工厂方法 Factory Method]
B --> B3[抽象工厂 Abstract Factory]
B --> B4[建造者 Builder]
B --> B5[原型模式 Prototype]
A --> C[结构型模式 Structural Patterns]
C --> C1[适配器 Adapter]
C --> C2[桥接 Bridge]
C --> C3[组合 Composite]
C --> C4[装饰者 Decorator]
C --> C5[外观 Facade]
C --> C6[享元 Flyweight]
C --> C7[代理 Proxy]
A --> D[行为型模式 Behavioral Patterns]
D --> D1[责任链 Chain of Responsibility]
D --> D2[命令 Command]
D --> D3[解释器 Interpreter]
D --> D4[迭代器 Iterator]
D --> D5[中介者 Mediator]
D --> D6[备忘录 Memento]
D --> D7[观察者 Observer]
D --> D8[状态 State]
D --> D9[策略 Strategy]
D --> D10[模板方法 Template Method]
D --> D11[访问者 Visitor]
A --> E[扩展模式 Extended Patterns]
E --> E1[依赖注入 Dependency Injection]
E --> E2[发布-订阅 Publish-Subscribe]
E --> E3[模块模式 Module Pattern]
E --> E4[MVC Model-View-Controller]
E --> E5[MVP Model-View-Presenter]
E --> E6[MVVM Model-View-ViewModel]
E --> E7[仓储模式 Repository Pattern]
E --> E8[服务定位器 Service Locator]
E --> E9[事件溯源 Event Sourcing]
详解 创建型模式(Creational Patterns) 单例模式(Singleton) 单例模式(Singleton Pattern)是一种创建型设计模式,确保一个类只有一个实例,并提供全局访问点。以下是单例模式的各种实现方式,包括线程安全的版本,用 Java 编写。每种实现都会标注其特点、优缺点及适用场景。
1. 饿汉式(Eager Initialization) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 public class SingletonEager { private static final SingletonEager INSTANCE = new SingletonEager (); private SingletonEager () { if (INSTANCE != null ) { throw new RuntimeException ("Singleton instance already exists" ); } } public static SingletonEager getInstance () { return INSTANCE; } }
特点 :类加载时即创建实例,线程安全。
优点 :简单,无需同步,天然线程安全。
缺点 :无论是否使用,都会创建实例,可能浪费资源。
适用场景 :实例开销小,且肯定会被使用。
2. 懒汉式(Lazy Initialization,非线程安全) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 public class SingletonLazy { private static SingletonLazy instance; private SingletonLazy () { if (instance != null ) { throw new RuntimeException ("Singleton instance already exists" ); } } public static SingletonLazy getInstance () { if (instance == null ) { instance = new SingletonLazy (); } return instance; } }
特点 :延迟加载,第一次调用时创建实例。
优点 :节省资源,懒加载。
缺点 :非线程安全,多线程下可能创建多个实例。
适用场景 :单线程环境,或不在意线程安全。
3. 线程安全的懒汉式(Synchronized 方法) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 public class SingletonSyncMethod { private static SingletonSyncMethod instance; private SingletonSyncMethod () { if (instance != null ) { throw new RuntimeException ("Singleton instance already exists" ); } } public static synchronized SingletonSyncMethod getInstance () { if (instance == null ) { instance = new SingletonSyncMethod (); } return instance; } }
特点 :通过同步方法实现线程安全。
优点 :简单,保证线程安全。
缺点 :每次调用 getInstance
都要加锁,性能开销大。
适用场景 :多线程环境,但调用频率不高。
4. 双重检查锁(Double-Checked Locking, DCL) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public class SingletonDCL { private static volatile SingletonDCL instance; private SingletonDCL () { if (instance != null ) { throw new RuntimeException ("Singleton instance already exists" ); } } public static SingletonDCL getInstance () { if (instance == null ) { synchronized (SingletonDCL.class) { if (instance == null ) { instance = new SingletonDCL (); } } } return instance; } }
特点 :结合懒加载和线程安全,双重检查减少同步开销。
优点 :高效,只有在实例未创建时加锁。
缺点 :实现复杂,需使用 volatile
(Java 5+)防止指令重排。
适用场景 :多线程环境,追求性能优化。
5. 静态内部类(Static Inner Class) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public class SingletonStaticInner { private SingletonStaticInner () { if (SingletonHolder.INSTANCE != null ) { throw new RuntimeException ("Singleton instance already exists" ); } } private static class SingletonHolder { private static final SingletonStaticInner INSTANCE = new SingletonStaticInner (); } public static SingletonStaticInner getInstance () { return SingletonHolder.INSTANCE; } }
特点 :利用类加载机制实现懒加载和线程安全。
优点 :简单、高效,JVM 保证线程安全,无需显式同步。
缺点 :无法传递构造参数。
适用场景 :多线程环境,推荐的懒加载方式。
6. 枚举单例(Enum Singleton) 1 2 3 4 5 6 7 8 public enum SingletonEnum { INSTANCE; public void doSomething () { System.out.println("SingletonEnum is working" ); } }
1 2 SingletonEnum singleton = SingletonEnum.INSTANCE;singleton.doSomething();
特点 :使用枚举实现单例,JVM 保证唯一性。
优点 :最简单,天然线程安全,防止反射和序列化破坏。
缺点 :无法懒加载,枚举类加载时即创建。
适用场景 :需要绝对安全(如防止反射攻击)的场景。
7. ThreadLocal 单例(线程局部单例) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public class SingletonThreadLocal { private static final ThreadLocal<SingletonThreadLocal> THREAD_LOCAL = ThreadLocal.withInitial(SingletonThreadLocal::new ); private SingletonThreadLocal () { } public static SingletonThreadLocal getInstance () { return THREAD_LOCAL.get(); } public static void remove () { THREAD_LOCAL.remove(); } }
特点 :每个线程拥有独立的单例实例。
优点 :线程隔离,适合线程特定的单例需求。
缺点 :不是全局单例,需注意 ThreadLocal 的内存管理。
适用场景 :线程私有单例,如线程上下文管理。
测试代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 public class Main { public static void main (String[] args) { SingletonEager s1 = SingletonEager.getInstance(); SingletonEager s2 = SingletonEager.getInstance(); System.out.println("Eager: " + (s1 == s2)); Runnable task = () -> System.out.println("DCL: " + SingletonDCL.getInstance()); Thread t1 = new Thread (task); Thread t2 = new Thread (task); t1.start(); t2.start(); SingletonEnum e1 = SingletonEnum.INSTANCE; SingletonEnum e2 = SingletonEnum.INSTANCE; System.out.println("Enum: " + (e1 == e2)); Thread thread1 = new Thread (() -> { SingletonThreadLocal stl1 = SingletonThreadLocal.getInstance(); System.out.println("ThreadLocal Thread1: " + stl1); }); Thread thread2 = new Thread (() -> { SingletonThreadLocal stl2 = SingletonThreadLocal.getInstance(); System.out.println("ThreadLocal Thread2: " + stl2); }); thread1.start(); thread2.start(); } }
说明
线程安全 :
饿汉式、静态内部类、枚举天然线程安全。
懒汉式需加锁(同步方法或 DCL)实现线程安全。
ThreadLocal 为每个线程提供独立实例。
反射和序列化防护 :
枚举单例天然防止反射和序列化破坏。
其他实现通过检查实例是否存在(构造方法抛异常)防御反射。
序列化需实现 readResolve
方法:1 2 3 private Object readResolve () { return getInstance(); }
性能 :
饿汉式和枚举无延迟,静态内部类和 DCL 高效懒加载。
同步方法性能较低。
复杂度 :
总结表
实现方式
懒加载
线程安全
复杂度
防止反射
防止序列化
适用场景
饿汉式
否
是
低
是
需额外实现
简单实例
懒汉式
是
否
低
是
需额外实现
单线程
同步方法
是
是
中
是
需额外实现
调用不频繁
双重检查锁
是
是
高
是
需额外实现
高性能多线程
静态内部类
是
是
中
是
需额外实现
推荐的多线程懒加载
枚举
否
是
低
是
是
最高安全性
ThreadLocal
是
线程内
中
是
需额外实现
线程私有单例
工厂方法(Factory Method)
抽象工厂(Abstract Factory)
建造者(Builder)
原型模式(Prototype)
结构型模式(Structural Patterns) 适配器(Adapter)
桥接(Bridge)
组合(Composite)
装饰者(Decorator)
外观(Facade)
享元(Flyweight)
代理(Proxy)
行为型模式(Behavioral Patterns) 责任链(Chain of Responsibility)
命令(Command)
解释器(Interpreter)
迭代器(Iterator)
备忘录(Memento)
观察者(Observer)
状态(State)
策略(Strategy)
模板方法(Template Method)
访问者(Visitor)
扩展模式(Extended Patterns) 依赖注入(Dependency Injection)
发布-订阅(Publish-Subscribe)
模块模式(Module Pattern)
MVC(Model-View-Controller)
MVP(Model-View-Presenter)
MVVM(Model-View-ViewModel)
仓储模式(Repository Pattern)
服务定位器(Service Locator)
事件溯源(Event Sourcing)