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 this piece of code, which is not working:

BigInteger sum = BigInteger.valueOf(0);
for(int i = 2; i < 5000; i++) {
    if (isPrim(i)) {
        sum.add(BigInteger.valueOf(i));
    }
}

The sum variable is always 0. What am I doing wrong?

share|improve this question
By the way, the sum should easily fit in int, so you don't need BigInteger for this example. – notnoop Nov 23 '09 at 15:51
Nope, I changed the code. The number is bigger than 5000. – cc. Nov 23 '09 at 19:40

5 Answers

up vote 38 down vote accepted

BigInteger is immutable. Therefore, you can't change sum, you need to reassign the result of the add method to sum.

sum = sum.add(BigInteger.valueOf(i));

Additionally, re-evaluate your need for BigInteger, a simple int primitive may be enough.

share|improve this answer
int will be enough as long as you don't go over 2^31-1, long will be enough as long as you don't go over 2^63-1. – Jean Hominal Nov 23 '09 at 16:45
2  
Which, in his example, he won't. – MarkPowell Nov 23 '09 at 16:46
sum = sum.add(BigInteger.valueOf(i))

The BigInteger class is immutable, hence you can't change its state. So calling "add" creates a new BigInteger, rather than modifying the current.

share|improve this answer

BigInteger is an immutable class. So whenever you do any arithmetic, you have to reassign the output to a variable.

share|improve this answer

Other replies have nailed it; BigInteger is immutable. Here's the minor change to make that code work.

BigInteger sum = BigInteger.valueOf(0);
for(int i = 2; i < 5000; i++) {
    if (isPrim(i)) {
        sum = sum.add(BigInteger.valueOf(i));
    }
}
share|improve this answer

java.Math.BigInteger is immutable class so we can not assign new object in the location of already assigned object . So you have to create new object to assign new value like.

sum = sum.add(BigInteger.valueOf(i));

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.