Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

JVM Languages

Fixed, Floating, and Exact Computation with Java's Bigdecimal


July, 2004: Fixed, Floating, and Exact Computation with Java's BigDecimal

When to Use float or double, When to Use BigDecimal

As well as being able to hold decimal fractions exactly, BigDecimal has a number of capabilities that are absent from the primitive binary floating-point types float and double. First, a BigDecimal can hold very big values, both in terms of exponent range and in terms of the number of digits; in contrast, the primitive floating-point types have a fixed precision and limited exponent range; see Table 2.

BigDecimal arithmetic operations allow full control over both the rounding mode and precision of the result. Operations on float and double always use the round to the nearest even rounding mode and the precision of the result is fixed. The string representation of a BigDecimal transparently denotes the number's value. Printing out float and double numbers is more subtle. The double floating-point value that prints out as "0.1" is not actually equal to 1/10; it is just the double value closest to 1/10.

The primitive floating-point types have their own advantages. Expressions on those types can be written with infix operations such as "+", "*", and "/". Today, binary floating-point enjoys near-ubiquitous hardware support, so operations should be quite fast. The primitive types also take up less space than BigDecimal objects.

In summary, if raw performance and space are the most important factors, primitive floating-point types are appropriate. If decimal values need to be represented exactly, high-precision computation is needed, or fine control of rounding is desired, only BigDecimal has the needed capabilities.

—M.C., J.B., and J.D.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.