자바 형변환

자바 2007. 7. 19. 20:09
형변환

[String -> int]
int i = Integer.parseInt(객체);

[int -> String]
String str = Integer.toString(객체);
Posted by kvoy
,