docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
@@ -1,12 +1,12 @@
---
id: [[P-Reinforce]]-AUTO-OODP-001
id: [[P-Reinforce|P-Reinforce]]-AUTO-OODP-001
category: "10_Wiki/💡 Topics/AI"
confidence_score: 0.97
tags: [auto-reinforced, software-engineering, oop, [[Architecture]]]
tags: [auto-reinforced, software-engineering, oop, [[Architecture|Architecture]]]
last_reinforced: 2026-04-20
---
# [[Object-Oriented-Design-Patterns]]
# [[Object-Oriented-Design-Patterns|Object-Oriented-Design-Patterns]]
## 📌 한 줄 통찰 (The Karpathy Summary)
> "검증된 설계의 악보: 클래스와 객체 간의 관계를 구조화하여 변경에는 유연하고 확장에는 열려 있는 소프트웨어를 만드는 23개 이상의 고전적 해법."
@@ -17,7 +17,7 @@ last_reinforced: 2026-04-20
1. **3대 분류**:
* **생성 패턴 (Creational)**: 객체 생성 방식을 추상화 (Singleton, Factory Method, Abstract Factory, Builder, Prototype).
* **구조 패턴 (Structural)**: 클래스/객체를 더 큰 구조로 조합 (Adapter, Composite, Decorator, Facade, Proxy).
* **행위 패턴 ([[Behavior]]al)**: 객체 간의 알고리즘 및 책임 분배 (Observer, [[Strategy]], [[State]], Command, Visitor, Mediator).
* **행위 패턴 ([[Behavior|Behavior]]al)**: 객체 간의 알고리즘 및 책임 분배 (Observer, [[Strategy|Strategy]], [[State|State]], Command, Visitor, Mediator).
2. **핵심 철학 (SOLID & Composition Over Inheritance)**:
* 상속보다는 구성을 사용하고, 구현이 아닌 인터페이스에 맞춰 프로그래밍 함.
3. **패턴의 가치**:
@@ -28,6 +28,6 @@ last_reinforced: 2026-04-20
- **정책 변화(RL Update)**: 현대의 함수형 프로그래밍(FP) 패러다임이 확산되면서, 복잡한 상태 패턴이나 전략 패턴 대신 단순한 고차 함수(Higher-order functions)를 사용하는 '패턴의 경량화' 정책이 선호됨.
## 🔗 지식 연결 (Graph)
- **Related**: Design Patterns, Clean Code, [[Separation_of_Concerns]], Software Architecture, [[Component_Design_Patterns]]
- **Related**: Design Patterns, Clean Code, [[Separation_of_Concerns|Separation_of_Concerns]], Software Architecture, [[Component_Design_Patterns|Component_Design_Patterns]]
- **Modern Tech/Tools**: InversifyJS (DI), Reactive Extensions (Observer).
---