vote up 5 vote down star

Either for comparisons or initialization of a new variable, does it make a difference which one of these you use?

I know that BigDecimal.ZERO is a 1.5 feature, so that's a concern, but assuming I'm using 1.5 does it matter?

Thanks.

flag

75% accept rate

4 Answers

vote up 11 vote down check

BigDecimal.ZERO is a predefined constant and therefore doesn't have to be evaluated from a string at runtime as BigDecimal("0") would be. It will be faster and won't require creation of a new object.

If your code needs to run on pre-1.5, then you can use the (much maligned) Singleton pattern to create an object equivalent to BigInteger.ZERO. The first time it is used, it would call BigInteger("0") to create a zero object, and return that object on subsequent calls. Otherwise, if your code is running on a 1.5 system, your singleton object can just return BigInteger.ZERO with no runtime penalty.

link|flag
I would remove the word "essentially" - it IS a predefined constant. – Bob Cross Nov 6 '08 at 18:21
Good call, thanks. – Greg Hewgill Nov 6 '08 at 18:22
new BigDecimal("0") creates a new object instance every time but BigDecimal.ZERO does not create new instances. – Juha Syrjälä Nov 6 '08 at 19:35
There is no need to create a singleton if you just create public static final in a final class called along the lines of "Constants", and just use that. – Spencer K Nov 6 '08 at 20:25
@Spencer that's the same thing – wds Mar 13 at 15:09
vote up 4 vote down

Using ZERO doesn't create a new object or require any parsing. Definitely the way to go.

link|flag
vote up 1 vote down

Out of curiosity I checked to constructor for BigDecimal and it doesn't have any optimizations for the "0" string. So definitely yes, there's a difference.

link|flag
There'd be a difference anyway, as calling new BigDecimal("0") will create a new object each time. – Jon Skeet Nov 6 '08 at 19:30
Can't argue that. I was just curious to know how large a penalty not using ZERO would be. Turns out it's substantial since the constructor for BigDecimal is pretty heavy. – Allain Lalonde Nov 7 '08 at 16:08
vote up 0 vote down

Before talking about runtime penalties make sure that this piece of code matters. Setup profiling and measure the complete use case.

Nevertheless prefer Bigdecimal.ZERO as it's checked at compile time wheres you can accidently type new Bigdecimal("9") which the compile will eat but like will cause bugs into your system.

link|flag
You could say this about any number. – Robert L Sep 5 at 4:41

Your Answer

Get an OpenID
or

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