How can I cast Long to BigDecimal?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You'll have to create a new
|
||||
|
|
|
For completeness you can use:
0 - 10 is as of the java 6 implementation, not sure about previous JDK's |
|||
|
|
You can't cast it. You can create a new
|
|||
|
|
|
You should not use BigDecimal d = new BigDecimal(long); !! The implementation in BigDecimal for longs is not precise. For financial applications this is critical! But the implementation for the String argument is better! So use something like:
There was a talk on http://www.parleys.com/ about this. |
||||
|
|
|
You need to create a new BigDecimal object
|
|||
|
|
|
you have to create a new bigDecimal |
|||
|
|