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.
|
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. |
|||
|
|
|
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 |
|||||||||||
|
|
Using ZERO doesn't create a new object or require any parsing. Definitely the way to go. |
|||
|
|
|
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. |
|||||||
|
|
Before talking about runtime penalties, make sure that this piece of code matters. Set up profiling and measure the complete use case. Nevertheless, prefer |
||||