新增wiki命令文件

This commit is contained in:
2026-04-14 16:02:50 +08:00
parent 65803c911d
commit c6e3d3c5db
485 changed files with 12578 additions and 396 deletions

View File

@@ -0,0 +1,18 @@
---
title: "DRY原则"
type: concept
tags: [编码, 原则]
sources: [dev-experience-standards]
last_updated: 2026-04-14
---
## Definition
Don't Repeat Yourself不重复代码原则。
## 实践
- 提炼公共逻辑
- 避免复制粘贴
- 模块化复用
## Connections
- [[单一职责]] ← 关联 ← [[DRY原则]]