변환 (1) 썸네일형 리스트형 숫자를 문자열로 변환 메소드를 이용한 방법 int abc = 11; String str = Integer.toString(abc); 다른 방법 int abc = 11; String str = abc+""; 이전 1 다음