Predefined value for float type

In this chapter you will learn:

  1. How to find out the Maximum value and minimum value a float type can have

Maximum value and Minimum value a float type

Float class defines the following constants:

  • static float MAX_VALUE stores largest positive finite value of type float.
  • static float MIN_VALUE stores smallest positive nonzero value of type float.
  • static int MAX_EXPONENT stores maximum exponent a finite float variable may have.
  • static int MIN_EXPONENT stores minimum exponent a normalized float variable may have.
  • static float MIN_NORMAL stores smallest positive normal value of type float.

The following code prints out the constants listed above.

public class Main {
  public static void main(String[] args) {
    System.out.println("MAX_VALUE:"+Float.MAX_VALUE);
    System.out.println("MIN_VALUE:"+Float.MIN_VALUE);
    System.out.println("MAX_EXPONENT:"+Float.MAX_EXPONENT);
    System.out.println("MIN_EXPONENT:"+Float.MIN_EXPONENT);
    System.out.println("MIN_NORMAL:"+Float.MIN_NORMAL);
  }/* jav a  2s .  c o m*/
}

The output:

The following lists more of the constants:

  • static float NaN stores Not-a-Number (NaN) value of type float.
  • static float NEGATIVE_INFINITY stores negative infinity of type float.
  • static float POSITIVE_INFINITY stores positive infinity of type float.
  • static int SIZE stores the number of bits used to represent a float value.

The following code prints out the constants listed above.

public class Main {
  public static void main(String[] args) {
    System.out.println("NaN:"+Float.NaN);
    System.out.println("NEGATIVE_INFINITY:"+Float.NEGATIVE_INFINITY);
    System.out.println("POSITIVE_INFINITY:"+Float.POSITIVE_INFINITY);
    System.out.println("SIZE:"+Float.SIZE);
  }//from   j a  va2s  .  c  o  m
}

The output:

Next chapter...

What you will learn in the next chapter:

  1. How to compare two float objects
  2. How to compare float value to a NaN(Not a Number)
Home » Java Tutorial » Primitive Data Types

Introduction

    Java Primitive Data Types

Boolean

    Java boolean type
    Java boolean type conversion
    Convert string value to boolean
    Convert boolean to string

Char

    Java char type
    Compare two char values
    Change char case
    Java char conversion
    Java char value and its attributes

Byte

    Java byte type
    Convert Byte to String
    Convert String to byte
    Byte object constructor
    Byte's max and min value
    Compare two byte values
    Convert Byte to byte, double, float, int, long and short

Short

    Java short type
    Short min/max value and size
    Create Short object
    Compare short values
    Convert short to String
    Convert Short to primitive types
    Convert string to short
    Reverse bytes

Integer

    Java int type
    int max/min value
    Create Java integer
    Convert int to binary, hexadecimal and octal format
    Compare integer values
    Integer sign
    Convert string to int
    Convert int to primitive types
    Convert int to String
    int bit operations

Long

    Java long type
    Compare two long values
    Convert long to binary, hex and octal
    Convert long value to primitive types
    Convert String to long value
    Convert long to String

Float

    Java float type
    Java float type conversion
    Predefined value for float type
    Compare two float value

Double

    Java double type
    Deal with NaN double value
    Compare two double values
    Java double type creation and comparison
    Java double type conversion

Data Type Conversion

    Java Automatic Type Conversion and Casting
    Data type casting
    Java type promotion
    Autoboxing and auto-unboxing