정수, 문자열 형변환 함수 **// int -> String // 1) String.valueOf(int)** int intValue = 123; String strValue = String.valueOf(intValue); **// 2) "" 추가 String** strValue2 = "" + intValue; **// String -> int //1) Integer.valueOf(str)** String str = "123"; int intValue = Integer.valueOf(str).intValue(); //Integer.valueOf 메소드는 Object return **//2) Intever.parseInt(str, 진수)** int intValue2 = Integer.parseInt(st..