Java Data Type Tutorial - Java BigInteger.floatValue()








Syntax

BigInteger.floatValue() has the following syntax.

public float floatValue()

Example

In the following code shows how to use BigInteger.floatValue() method.

//from  www .ja  va2s.co m

import java.math.BigInteger;

public class Main {

  public static void main(String[] args) {

    // assign values to bi1, bi2
    BigInteger bi1 = new BigInteger("123");
    BigInteger bi2 = new BigInteger("-123");

    // assign float values of bi1, bi2 to f1, f2
    Float f1 = bi1.floatValue();
    Float f2 = bi2.floatValue();

    // print f1, f2 values
    System.out.println(f1);
    System.out.println(f2);
  }
}

The code above generates the following result.