반응형
Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

디케이

[JAVA]BigDecimal to int 형 변환 본문

Java

[JAVA]BigDecimal to int 형 변환

디케이형 2021. 1. 9. 21:10
반응형
//int value
int result = bigDecimalNumber.intValue();

//double value
double result = bigDecimalNumber.doubleValue();

//float value
float result = bigDecimalNumber.floatValue();
반응형