Created
September 2, 2025 14:52
-
-
Save uyu423/3e8f6cba3c5c2cc63b43921724486346 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 과도하게 추상화된 코드 | |
| interface Processor { | |
| process(); | |
| } | |
| class OrderProcessor: Processor { ... } | |
| class PaymentProcessor: Processor { ... } | |
| // 실제론 단순히 order.process(), payment.process() 호출할 뿐... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment