Develop/JAVA
Java 디자인 패턴 다섯번째 이야기 - 전략 패턴(Strategy Pattern)
[목차] 1. Strategy Pattern - 전략 패턴이란? 2. 전략 패턴은 왜 사용하는 것일까? 3. 구현해보기 전에 알아보자! 4. 전략 패턴 구현방법(예제 활용) 5. 결론 | Strategy Pattern - 전략 패턴이란? the strategy pattern (also known as the policy pattern) is a behavioral software design pattern that enables selecting an algorithm at runtime. Instead of implementing a single algorithm directly, code receives run-time instructions as to which in a family of algor..