Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- ruby
- 루비
- Spring
- Baekjoon
- IntelliJ
- jetbrains
- kotlin
- Python
- Vane
- Godot
- maven
- boj
- C
- Java
- OTLanguage
- error
- Android
- rubymine
- GitHub
- 개발노트
- gradle
- RaspberryPi
- plugin
- gnuplot
- CPP
- JS
- react
- OAuth
- ruby2d
- Shell
Archives
- Today
- Total
PersesTitan(페르) 기술블로그
[Java] Non-terminating decimal expansion; no exact representable decimal result. 본문
Error
[Java] Non-terminating decimal expansion; no exact representable decimal result.
PersesTitan(페르) 2023. 1. 21. 13:19Exception in thread "main" java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result.
at java.base/java.math.BigDecimal.divide(BigDecimal.java:1766)
at Main.main(Main.java:14)
코드
에러가 발생한 코드 예시
BigDecimal b1 = new BigDecimal("155.2");
BigDecimal b2 = new BigDecimal("0.3");
System.out.println(b1.divide(b2));
원인
BigDecimal는 정확한 계산이 가능하지만 나누기와 같은 소수점 계산을 할때 무한 소수가 발생할 수 있으므로 몇자리수까지 표시하라고 따로 지정해주어야합니다.
해결
MathContext 사용
BigDecimal b1 = new BigDecimal("155.2");
BigDecimal b2 = new BigDecimal("0.3");
System.out.println(b1.divide(b2, MathContext.DECIMAL32));
System.out.println(b1.divide(b2, MathContext.DECIMAL64));
System.out.println(b1.divide(b2, MathContext.DECIMAL128));
출력
517.3333
517.3333333333333
517.3333333333333333333333333333333
517.3333333333333333333333333333333
RoundingMode 사용
중간에 scale값을 지정하여 MathContext와 다르게 자릿수를 지정할 수 있습니다.
BigDecimal b1 = new BigDecimal("155.2");
BigDecimal b2 = new BigDecimal("0.3");
System.out.println(b1.divide(b2, 2, RoundingMode.HALF_UP));
System.out.println(b1.divide(b2, 2, RoundingMode.DOWN));
System.out.println(b1.divide(b2, 2, RoundingMode.UP));
RoundingMode의 자세한 글은 해당 블로그를 참고해주세요.