Skip to content

Instantly share code, notes, and snippets.

@uyu423
Created September 2, 2025 14:52
Show Gist options
  • Select an option

  • Save uyu423/3e8f6cba3c5c2cc63b43921724486346 to your computer and use it in GitHub Desktop.

Select an option

Save uyu423/3e8f6cba3c5c2cc63b43921724486346 to your computer and use it in GitHub Desktop.
// 과도하게 추상화된 코드
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