본문 바로가기
개발/Java

[Java] String to int, int to String 형변환

by KEI NETWORK 2019. 9. 8.
728x90

Strinig to int

 

String from = "123";

int to = Integer.parseInt(from);

 

 

int to String

 

int from = 123;

String to = Integer.toString(from);




728x90

댓글