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

I was wondering if there was a way to multiply BigInteger variables together, because the * operator cannot be applied to BigInteger.

So I was wondering if it was possible to multiply two BigIntegers together without using the * operator.

share|improve this question

2 Answers

up vote 4 down vote accepted

You use BigIntegers multiply() method like so:

BigInteger int1 = new BigInteger("131224324234234234234313");
BigInteger int2 = new BigInteger("13345663456346435648234313");
BigInteger result =  int1.multiply(BigInteger int2) 

I should have pointed out a while ago that BigInteger is immutable. So any result of an operation has to be stored into a variable. The operator or operand are never changed.

share|improve this answer
If this gets too annoying, you can do work in Groovy which maps the operators correctly. I am implementing some math classes (BigRational for one) and for the first time Java has seemed extremely cumbersome--Although I generally love Java I have to admit that it's not the answer to every programming problem. If you need Java's speed but want advantages like Operator Overloading you might also try Scala. – Bill K Oct 7 '10 at 0:05

You can use the multiply(BigInteger) method in BigInteger. So:

BigInteger result = someBigInt.multiply(anotherBigInt);

BigInteger in Java API

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.