Simple Solution
  • Java
  • Spring
  • Spring Boot
  • Tutorials
  • Tags
Java initialize BigInteger value
Java initialize BigInteger value

In this Java core tutorial we learn how to initialize a BigInteger object from a String or a long value using BigInteger constructor or java.math.BigInteger.valueOf() method.

Java get minimum value of two BigInteger values
Java get minimum value of two BigInteger values

In this Java core tutorial we learn how to use the java.math.BigInteger.min() method to get the minimum value of two given BigInteger values.

Java get maximum value of two BigInteger values
Java get maximum value of two BigInteger values

In this Java core tutorial we learn how to use the java.math.BigInteger.max() method to get the maximum value of two given BigInteger values.

Java Compare BigInteger values for equality
Java Compare BigInteger values for equality

In this Java core tutorial we learn how to compare BigInteger values for equality using the java.math.BigInteger.equals() method.

Java divide BigInteger
Java divide BigInteger

In this Java core tutorial we learn how to use the java.math.BigInteger.divide() method to divide BigInteger values.

Java convert long to BigInteger
Java convert long to BigInteger

In this Java core tutorial we learn how to convert a long value to a BigInteger value using the java.math.BigInteger.valueOf() method.

Java convert int to BigInteger
Java convert int to BigInteger

In this Java core tutorial we learn how to convert an integer value to a BigInteger value using the java.math.BigInteger.valueOf() method.

Java convert BigInteger to String
Java convert BigInteger to String

In this Java core tutorial we learn how to use the java.math.BigInteger.toString() method to convert a BigInteger value to a String value.

Java convert BigInteger to short
Java convert BigInteger to short

In this Java core tutorial we learn how to use the java.math.BigInteger.shortValueExact() and java.math.BigInteger.shortValue() method to convert a BigInteger object into a short value.

Java convert BigInteger to long
Java convert BigInteger to long

In this Java core tutorial we learn how to use the java.math.BigInteger.longValueExact() and java.math.BigInteger.longValue() method to convert a BigInteger object into a long value.

  • 1
  • 2
  • 3

Copyright © 2019 SimpleSolution.dev. All Rights Reserved.