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

I have a problem with assigning one big decimal value to another

I am trying such as creating one temp big decimal and add 0 to another big decimal

BigDecimal temp = new BigDecimal(0);
dropStartValue =  temp.add(newCounterValue);

However, I only want simply do the operation below on big decimals:

dropStartValue = newCounterValue
share|improve this question
What language is this? Java? Also, what type does "newCounterValue" belong to? – Romain Dec 7 '09 at 12:46

2 Answers

up vote 1 down vote accepted

You haven't specified the type of either dropStartValue or newCounterValue. If they're both BigDecimals, then this should be fine:

dropStartValue = newCounterValue;

Note that although that's just making both variables refer to the same object, it's safe because BigDecimal itself is immutable.

If that's not working for you, please give details of what problems you're seeing (exceptions? compile-time errors?).

share|improve this answer
And for the OP, some documentation: java.sun.com/javase/6/docs/api/java/math/BigDecimal.html – T.J. Crowder Dec 7 '09 at 12:52

Assuming this is Java ans newCounterValue is an integer type or a box thereof, dropStartValue = new BigDecimal(newCounterValue); should do what you want.

share|improve this answer
I thought that originally - but BigDecimal.add doesn't take ints etc, so I suspect newCounterValue is another BigDecimal... – Jon Skeet Dec 7 '09 at 12:49
@Jon: Sure it does: java.sun.com/javase/6/docs/api/java/math/… – T.J. Crowder Dec 7 '09 at 12:52

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.