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
+2 -2
View File
@@ -6,7 +6,7 @@ tags: [DesignPatterns, Factory, OOP, Abstraction]
last_reinforced: 2026-04-20
---
# [[Factory-Pattern]] (팩토리 패턴)
# [[Factory-Pattern|Factory-Pattern]] (팩토리 패턴)
## 📌 한 줄 통찰 (The Karpathy Summary)
> "객체 생성을 전담하는 대리인." 어떤 구체적인 클래스의 인스턴스를 만들지 결정하는 로직을 별도의 객체나 메서드로 분리하여, 클라이언트 코드가 생성 방식의 변화로부터 자유로워지게 하는 패턴이다.
@@ -21,5 +21,5 @@ last_reinforced: 2026-04-20
- 팩토리 패턴은 코드의 유연성을 높이지만, 단순한 객체 생성에도 팩토리를 도입하면 클래스 수가 많아지고 구조가 복잡해지는 '클래스 폭발'을 유발할 수 있다. 객체 생성 로직이 복잡하거나 타입에 따라 분기가 빈번할 때만 선택적으로 사용하는 것이 좋다.
## 🔗 지식 연결 (Graph)
- Related: [[Dependency-Injection]] , Abstract-Factory-Pattern
- Related: [[Dependency-Injection|Dependency-Injection]] , Abstract-Factory-Pattern
- Concept: Encapsulation