new BigInteger(String val, int radix) : BigInteger « java.math « Java by API
- Java by API
- java.math
- BigInteger
new BigInteger(String val, int radix)
import java.math.BigInteger;
public class Main {
public static void main(String[] argv) throws Exception {
BigInteger bi = new BigInteger("4407760", 8);
}
}
Related examples in the same category