Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to calculate some floating point variables and my colleague suggest me to use BigDecimal instead of double since it will be more precise. But I want to know what it is and how to make most out of BigDecimal?

share|improve this question

2 Answers

up vote 36 down vote accepted

A BigDecimal is an exact way of representing numbers. A Double has a certain precision. Working with doubles of various magnitudes (say d1=1000.0 and d2=0.001) could result in the 0.001 being dropped alltogether when summing as the difference in magnitude is so large. With BigDecimal this would not happen.

The disadvantage of BigDecimal is that it's slower, and it's a bit more difficult to program algorithms that way (due to + - * and / not being overloaded).

If you are dealing with money, or precision is a must, use BigDecimal. Otherwise Doubles tend to be good enough.

I do recommend reading the javadoc of BigDecimal as they do explain things better than I do here :)

share|improve this answer
Yep, I'm calculating the price for stock so I believe BigDecimal is useful in this case. – Truong Ha Aug 5 '10 at 9:51
2  
@Truong Ha: When working with prices you want to use BigDecimal. And if you store them in the database you want something similar. – extraneon Aug 5 '10 at 11:46

Check out this one;

http://stackoverflow.com/questions/322749/retain-precision-with-doubles-in-java

share|improve this answer
Right, you could probably use double for most calculations, as long as you understand the loss of precision. Most problems will probably be formatting problems. BigDecimal is ok for most situations involving only decimal calculations, but could have its own precision problems, e.g.: dividing a price between 3 people. – ymajoros Apr 4 '12 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.