자바 String을 int로 변환

Jmnote (토론 | 기여)님의 2018년 7월 12일 (목) 10:18 판 (→‎개요)

1 개요

자바 String-int 형 변환
String str = "123";
int i = Integer.parseInt(str);
String str = "123";
Integer i = Integer.valueOf(str);

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}