-
리팩토링 : Introduce Null Object리팩토링 2013. 1. 4. 09:00
조건
null 값을 반복해서 체크하고 있다면
적용
null값을 null 객체로 대신하시오.
적용전
if (customer == null) plan = BillingPlan.basic(); else plan = customer.getPlan();
적용후
참조
'리팩토링' 카테고리의 다른 글
리팩토링 : Introduce Synchronizer Token (0) 2013.01.06 리팩토링 : Introduce Parameter Object (0) 2013.01.05 리팩토링 : Introduce Local Extension (0) 2013.01.03 리팩토링 : Introduce Foreign Method (0) 2013.01.01 리팩토링 : Introduce Explaining Variable (0) 2012.12.31 댓글