목록Refactoring (1)
신입 게임 개발자의 프로그래밍 일기
[리팩토링워크북]3장_측정할 수 있는 냄새-연습문제3. 주석-
연습문제 3. 주석 이 코드를 검토해 보자. (코드는 http://www.xp123.com/rwb에서 구할 수 있다.) (소스 코드) public class Matcher { public Matcher(){} public boolean match(int[] expected, int[] actual, int clipLimit, int delta){ //기준 값보다 긴 값 잘라내기! for(int i=0; i clipLimit) actual[i] = clipLimit; //실제 값들과 기대 값들의 총 개수가 같은지 검사하기! if(actual.length != expected.length) return false; //각 값들이 예상 범위에 있는지 검사하기! for(int i=0; i delta) retur..
Refactoring
2017. 1. 23. 09:54