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
- CS
- Open Closed Principle
- Java
- Heap
- 객체지향 설계 5원칙
- Single Responsibillity Principle
- Runtime data Area
- Native Method Stack
- Spring SOLID
- 단일 책임 원칙
- JVM
- Class Loader
- 개방-폐쇄 원칙
- solid
- 자바 heap
- 자료구조
- 객체지향
- stack메모리
- 스택
- 실행 엔진
- Execution Engine
- 개방폐쇄원칙
- Spring
- Data Structure
- Stack
- 단일책임원칙
- 스택메모리
- 자바
- pc register
- 의존성 역전 원칙
Archives
- Today
- Total
목록Spring SOLID (1)
Juuunew 살아남기
[Spring] 객체지향 설계원칙 (SOLID) - 개방-폐쇄 원칙 OCP
개방-폐쇄 원칙 - OCP (Open Closed Principle) 확장에는 열려있고, 변경에는 닫혀있는 기존의 코드를 변경하지 않으면서(Closed), 기능을 확장할 수 있도록(Open) 설계해야한다. 다형성을 활용해 볼 것. 단일 책임 원칙에서 예시로 들었던 서비스센터를 이어서 활용해 보겠다. // ServiceCenter 인터페이스 public interface ServiceCenter { public void repair(); } // LaptopServiceCenter 구현 클래스 public class LaptopPart implements ServiceCenter{ @Override public void repair() { System.out.println("노트북 수리"); } } // ..
Framework/Spring
2022. 12. 8. 22:57