BackEnd FrontEnd/JAVA
String to int
forkballpitch
2016. 11. 22. 15:00
String to int
String from = "123";
int to = Integer.parseInt(from);
int to String
int from = 123;
String to = Integer.toString(from);