[JAVA] int형 <-> String형 형변환

JAVA 2017. 6. 9. 09:44
1
2
3
4
5
String -> int 형변환
Integer.parseInt("문자열");
 
int -> String 형변환
Integer.toString(숫자);
cs