기본 타입에서
String
으로 변환할 경우 임시 객체의 불필요한 생성을 보고합니다.
예:
String foo = new Integer(3).toString();
빠른 수정을 적용한 후:
String foo = Integer.toString(3);