int1 [java] String, int 형 변환 String -> int Integer.parseInt() 메소드를 사용하면 된다. String test_string = "123"; int test_int = Integer.parseInt(test_string); 반대로 int-> String Integer.toString() 메소드를 사용하면 된다. int test_int = 123; String test_string = Integer.toString(test_int); 개발 언어/자바 java 2020. 2. 18. 이전 1 다음