[Java] String <-> Int 형변환
·
개발 ━━━━━/Java
String -> int Integer.parseInt() public class stringToInt { public static void main(String[] args) { String str = "123"; int intValue = Integer.parseInt(str); } } Integer.valueOf() public class stringToInt { public static void main(String[] args) { String str = "123"; int intValue = Integer.valueOf(str); } } Integer.parseInt() vs Integer.valueOf() parseInt() 의 반환값 : 기본 자료형 int 리턴 valueOf() 의 반환값..