본문 바로가기
Programming/java

Integer.valueOf(String).intValue()

by 막이 2012. 11. 7.
Integer mvalue = Integer.valueOf(m); // String m을 Integer로 변환
int month = mvalue.intValue(); // Integer mvalue를 int로 변환

valueOf(String s)
Returns an Integer object holding the value of the specified String.