Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 클라우드 네이티브
- MSA
- 자바
- 클라우드 네이티브 자바
- 동기화
- spring microservice
- 헬름
- cloud native
- 마이크로서비스
- devops
- nGrinder
- ingress
- Semaphore
- CRD
- 익명클래스
- Microservice
- Spring
- java
- Adapter 패턴
- Stress test
- ansible
- Algorithm
- Kotlin
- decorator 패턴
- MySQL
- 머신러닝
- cloud native java
- 쿠버네티스
- kubernetes
- 코틀린
Archives
- Today
- Total
목록Decorator Pattern (1)
카샤의 만개시기
Decorator 패턴
데코레이터 패턴은 인터페이스를 바꾸지 않고 책임(기능)만 추가하여 확장하는 패턴이다. 대표적인 예제로는 Reader와 BufferedReader가 있다. BufferedReader는 Reader 유틸에 버퍼의 기능을 확장한 것이다. 우리는 글자를 꾸미는 예제를 만들어보자. public interface Print { String print(); }public class OriginPrint implements Print { @Override public String print() { return "design pattern"; } }Print 인터페이스를 상속받아 design pattern을 출력하는 print()함수를 만들었다. public class StarPrint implements Print {..
Foundation/Design Pattern
2019. 10. 27. 10:31