자바 String을 int로 변환

(자바 String-int 형 변환에서 넘어옴)

1 개요[ | ]

자바 String-int 형 변환
class MyClass{
    public static void main(String[] args){
        String str = "123";
        int i = Integer.parseInt(str);
        System.out.println(i);
    }
}
class MyClass{
    public static void main(String[] args){
        String str = "123";
        Integer i = Integer.valueOf(str);
        System.out.println(i);
    }
}

2 같이 보기[ | ]

3 참고[ | ]

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