resultList.get(i).setSum(Integer.toString(Integer.parseInt(result.get(i).getOutQuantity()) - Integer.parseInt(result.get(i).getInQuantity())));
위 코딩을 하다 의문점이 생겨.. 이렇게 정리한다. '-'
integer.parseInt(String) |
integer.valueOf(String) |
음수 인식 |
음수를 인식하지 못함 |
int 형을 반환 |
Integer 객체를 반환 |
|
내부에서 parseInt()를 씀 |
반응형
'Language & Library > JAVA' 카테고리의 다른 글
constructor (생성자) (0) | 2014.01.02 |
---|---|
static (0) | 2013.12.31 |
POI 참조 사이트 (0) | 2013.12.23 |
map을 list에 담는 간단한 방법 (0) | 2013.12.09 |
캡슐화, 다형성, 상속 (0) | 2013.07.11 |