-
리팩토링 : Remove Assignments to Parameters리팩토링 2013. 1. 22. 09:00조건코드가 파라메터로 할당된다면적용대신에 임시변수를 사용하시오.적용전
int discount (int inputVal, int quantity, int yearToDate) { if (inputVal > 50) inputVal -= 2; }
적용후int discount (int inputVal, int quantity, int yearToDate) { int result = inputVal; if (inputVal > 50) result -= 2; }
참조'리팩토링' 카테고리의 다른 글
리팩토링 : Remove Control Flag (0) 2013.01.23 리팩토링 : Reverse Conditional (0) 2013.01.22 리팩토링 : Refactor Architecture by Tiers (0) 2013.01.21 리팩토링 : Reduce Scope of Variable (0) 2013.01.20 리팩토링 : Push Down Method (0) 2013.01.19 댓글