티스토리 뷰
728x90
반응형
parseInt()
static 이므로 Integer 생성 안 하고 parameter만 넣어주면
메소드를 수행할 수 있다.
string형 객체에서 int형 값을 뽑아내는 메소드이다.
문자형을 정수형으로 만든다
int i = Integer.parseInt(str);
intValue()
static이 아니며 Integer 객체에서 int형 값을 뽑아내는 메소드이다
Integer는 (int Value와 String Value) 두 가지가 있다.
int i = Integer.valueOf(str).intValue();
Integer i = new Integer(150);
i.intValue();
반응형
'프로그래밍 > Java' 카테고리의 다른 글
[Java] Type Safety : unchecked cast (0) | 2019.01.29 |
---|---|
[Java] :: ( 더블콜론 ) (0) | 2018.12.12 |
[Java] Iterator (0) | 2018.12.12 |
[Java] 문자열 자르기, replace() 메소드 (0) | 2017.10.25 |
[JAVA] String, StringBuilder, StringBuffer (0) | 2017.09.28 |
공지사항
최근에 올라온 글