BigDecimal을 숫자로 형변환하는 예제입니다.
아래 소스를 참고하세요.
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 | import java.math.BigDecimal; public class CastingTest { public static void main(String[] args) { BigDecimal bigDecimal = new BigDecimal("5"); double doubleValue = bigDecimal.doubleValue(); float floatValue = bigDecimal.floatValue(); int intValue = bigDecimal.intValue(); short shortValue = bigDecimal.shortValue(); long longValue = bigDecimal.longValue(); System.out.println("doubleValue: "+doubleValue); System.out.println("floatValue: "+floatValue); System.out.println("intValue: "+intValue); System.out.println("shortValue: "+shortValue); System.out.println("longValue: "+longValue); } } |
java xml parser 예제 (자바 xml 파싱) (0) | 2015.05.19 |
---|---|
자바 파일명 변경 (이미지 이름변경) (0) | 2015.03.31 |
Map의 value(값)로 정렬(Sort) (0) | 2015.03.05 |
자바 리스트 안에 맵 값 정렬 (java list map value sort) (0) | 2015.03.04 |
java submit html form (0) | 2015.02.17 |
댓글 영역