valueOf()
Last updated
Last updated
Wrapper 클래스 : Integer, Character, Double, String 등
Wrapper 클래스들은 모두 valueOf 메소드를 가지고 있다.
String을 정수로 형변환
valueOf() : 정수형 객체를 리턴한다. new Integer(Integer.parseInt(s))와 같은 값을 갖는 정수 객체를 리턴한다! (parseInt()가 valueOf()를 구현하는 데에 사용된다.)
2. parseInt() : 정수 값을 리턴한다.