개발 언어/자바 java

[java] String, int 형 변환

삐뚤어진 개발자 2020. 2. 18.

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);

댓글