반응형 커멘드패턴1 디자인 패턴 간단한 Command 패턴 개인적으로 필요해서 간단히 패턴을 익히고자 나만의 포스팅. public interface Command { public void execute(); } 범용적인 기능이 구현된 클래스... 추가적인 인자를 받아 더 디테일한 기능을 구현하게 된다. public class Light { String location = ""; public Light(String location) { this.location = location; } public void on(){ System.out.println(location + " light is on"); } public void off(){ System.out.println(location + " light is off"); } } Ligth 객체의 기능을 호출할 수 .. 2023. 4. 18. 이전 1 다음 반응형