Skip to content

Commit

Permalink
add:单例模式
Browse files Browse the repository at this point in the history
  • Loading branch information
BraumAce committed Oct 20, 2024
1 parent e4f0ae8 commit 56a3520
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/computer/design-mode/创建型/单例模式.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
category:
- 设计模式
tag:
- 创建型模式
---

# Singleton 单例模式 —— 只有一个实例

<!-- more -->

## 单例模式的定义

如果一个类只允许创建一个对象(或实例),那么,这个类就是一个单例类,这种设计模式就称为单例模式。

从业务概念方面来讲,如果某个类包含的数据在系统中只应保存一份,那么这个类就应该被设计为单例类。

0 comments on commit 56a3520

Please sign in to comment.