Octoping의 블로그
Published 2022. 6. 18. 15:48
언박싱 메소드 언어/Java
// Boolean to boolean
Boolean b = true;
boolean bb = b.booleanValue();

// Integer to int
Integer i = 10;
int ii = i.intValue();

// Character to char
Character c = 'a';
char cc = c.charValue();

// Long to long
Long l = 2L;
long ll = l.longValue();

// Double to double
Double d = 5.0;
double dd = d.doubleValue();

이를 이용해서 Integer to double과 같은 경우는 Integer를 언박싱한 후 double로 형변환하면 된다.

 

Integer i = 10;
double d = i.intValue();
profile

Octoping의 블로그

@Octoping

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!