Example usage for java.lang Float MIN_EXPONENT

List of usage examples for java.lang Float MIN_EXPONENT

Introduction

In this page you can find the example usage for java.lang Float MIN_EXPONENT.

Prototype

int MIN_EXPONENT

To view the source code for java.lang Float MIN_EXPONENT.

Click Source Link

Document

Minimum exponent a normalized float variable may have.

Usage

From source file:Main.java

public static void main(String[] args) {
    System.out.println("MIN_EXPONENT:" + Float.MIN_EXPONENT);
}