mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-05 06:18:32 +00:00
Merge pull request #1929 from hopesenddreams/patch-2
Added BigDecimal float constructor caveat
This commit is contained in:
commit
aa32e08a05
@ -145,6 +145,11 @@ public class LearnJava {
|
||||
|
||||
BigDecimal fooBigDecimal = new BigDecimal(fooBigInteger, fooInt);
|
||||
|
||||
// Be wary of the constructor that takes a float or double as
|
||||
// the inaccuracy of the float/double will be copied in BigDecimal.
|
||||
// Prefer the String constructor when you need an exact value.
|
||||
|
||||
BigDecimal tenCents = new BigDecimal("0.1");
|
||||
|
||||
|
||||
// Strings
|
||||
|
Loading…
Reference in New Issue
Block a user