String to int
String from = "123";
int to = Integer.parseInt(from);
int to String
int from = 123;
String to = Integer.toString(from);
'Develop > Java' 카테고리의 다른 글
Scanner 사용 시, next()와 nextLine()의 차이 (0) | 2022.08.31 |
---|---|
StringBuilder vs StringBuffer (0) | 2022.08.30 |
자료형 일치 (0) | 2022.08.25 |
print vs printf vs println (0) | 2022.08.24 |
Interface (0) | 2022.07.09 |