Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I cast Long to BigDecimal?

share|improve this question
5  
You can't cast one to the other. They aren't subclasses of a common superclass. – S.Lott May 28 '09 at 15:53

6 Answers

up vote 16 down vote accepted

You'll have to create a new BigDecimal.

BigDecimal d = new BigDecimal(long);
share|improve this answer
Thank you, that is easy and very helpful. – Ali Dec 5 '12 at 6:02

For completeness you can use:

// valueOf will return cached instances for values zero through to ten
BigDecimal d = BigDecimal.valueOf(yourLong);

0 - 10 is as of the java 6 implementation, not sure about previous JDK's

share|improve this answer
valueOf is preferred as per the JavaDocs: 'This "static factory method" is provided in preference to a (long) constructor because it allows for reuse of frequently used BigDecimal values.' – Steve Kuo May 29 '09 at 3:14

You can't cast it. You can create a new BigDecimal though. You can get a long from a Long using Long.getLongValue() if you have the non-primitave Long.

BigDecimal bigD = new BigDecimal(longVal);
share|improve this answer
Darn, too slow. – jjnguy May 28 '09 at 15:52

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:

new BigDecimal(yourLong.toString());

There was a talk on http://www.parleys.com/ about this.

share|improve this answer

You need to create a new BigDecimal object

  Long test = new Long (10);
  BigDecimal bigD = new BigDecimal(test.longValue());
share|improve this answer

you have to create a new bigDecimal

how to do it

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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