Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[이상조] 챕터 1: 디자인 패턴 소개 #15

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions 챕터_1/이상조.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 디자인 패턴 소개

> 좋은 코드는 후임 개발자에게 보내는 러브레터와도 같다

- 코드를 체계화하기 위한 공통적인 패턴을 제공해 코드를 쉽게 이해하도록 돕고, 의사소통을 원활하게 해준다.
- 비슷한 문제를 마주하여 최적화된 방법으로 풀이해 낸 사람들의 경험에 기댈 수 있음
- 유지보수가 쉬운 코드를 작성하거나 리팩터링할 수 있는 길을 열어준다
- 언어에 국한되지 않는다는 점이 중요

---

- 검증되었다
- 쉽게 재사용할 수 있다
- 알아보기 쉽다
- 패턴을 다 알아야 알아보기 쉽지 모르면 더 복잡해 보이지 않을까?
- 실수를 방지한다
- 특정 문제에 국한되지 않은 종합적 해결책
- 코드의 반복을 줄일 수 있다
- 의사소통 원활
- 커뮤니티의 선순환
Loading