Java Float(float value) Constructor

Syntax

Float(float value) constructor from Float has the following syntax.

public Float(float value)

Example

In the following code shows how to use Float.Float(float value) constructor.


public class Main {
  public static void main(String[] args) {
    Float float2 = new Float(0.1F);
    /*from  w  ww  .jav a  2  s . c  o m*/
    System.out.println(float2);
    
  }
}

The output:





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable