Is there a guideline for estimating the amount of memory consumed by a BigDecimal?
Looking for something similar to these guidelines for estimating String memory usage.
|
Is there a guideline for estimating the amount of memory consumed by a Looking for something similar to these guidelines for estimating |
|||
|
If you look at the fields in the source for BigDecimal there is:
The comment for stringCache is "Used to store the canonical string representation, if computed.", so assuming that you don't call toString we will leave that as zero bytes, so in total there are (8+4+4)=16 bytes + BigInteger in BigDecimal and 4+4+4+4+4=20 bytes + mag for BigInteger. So a total of 36 bytes plus the magnitude. As far as I can tell magnitude is always the minimum number of bits necessary to represent the full integer, so for a number n it will need log2(n) bits, which can be converted to ints. So in general you should be using about:
(note this doesn't include any of the other object descriptor overhead as your example link for strings does, but it should give you a good general idea.) |
||||
|
|
|
If you dig into the internals of |
|||
|
|
String, it is implementation dependent. – Tom Hawtin - tackline Mar 23 '10 at 15:35