This is my code. It shows an error when I create an array of BigInteger and try to assign a value.
BigInteger
package test; import java.math.*; import java.la
Java have static types and the auto boxing is only enabled for the wrappers of primitive types, like int to Integer, but not for BigInteger. You will have to do
int
Integer
new BigInteger("676557656534345345654645654654645645645645665656567")
explicitly.