💻 개발IT/Design Patterns
2022. 2. 27.
3. Behavior 패턴 - Observer Pattern
문제 정의 weather station에 다양한 센서가 부착되어있는데, weatherData Object는 weather station에 데이터를 받아 다양한 display 장치에 데이터를 전달해주는 역할을 하고 있다. display 장치는 current conditions display, statistics display, forecast display가 존재한다. weatherData에는 센서 값이 변경될 때마다 measurementChanged() 함수가 호출된다. measurementsChanged() 함수에는 세 가지 display 장치를 update 해주는 코드가 작성되어있다. (종속성) 새로운 display 장치가 늘어날 수 있어 확장 가능한 SW를 만들어야한다! Observer Patter..