하나의 임시 변수를 가지고 여러 값을 사용하는 경우가 있다. 이럴 때에 임시 변수를 분리 하자.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
double temp_width = (panel.getWidth() * 2); | |
System.out.println(temp_width); | |
double temp_height = panel.getHeight() * 2; | |
System.out.println(temp_height); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
double temp = (panel.getWidth() * 2); | |
System.out.println(temp); | |
temp = panel.getHeight() * 2; | |
System.out.println(temp); |
|
반응형
'프로그래밍 > Refactoring' 카테고리의 다른 글
Refactoring 8. 매개변수 값 대입의 제거 (0) | 2015.11.04 |
---|---|
Refactoring 6. 복잡한 수식을 직관적인 변수로 교체 (0) | 2015.11.04 |
Refactoring 5. 수식 결과를 저장하는 임시변수 제거 (0) | 2015.11.04 |
Refactoring 4. 임시변수를 제거 하자. (0) | 2015.11.04 |
Refactoring 3. 메소드 내용 직접 삽입 (0) | 2015.10.22 |