2021-04-17 00:00

리팩터링 5 - Refactoring 5

12. 상속 다루기
12.1 메서드 올리기(Pull Up Method)
// Before
class Employee {...}
class Salesman extends Employee {
get name() {...}
}
cl...

댓글