BigInteger is used for operations on integer that actually overflow the int range (2 to the power 32), like computing factorial of 100 etc.
How does actually BigInteger store the intermediate values or the final value?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The value is stored as an int array
Use the source Luke 🙂
grepcode__openjdk_math_BigInteger