Float(float value) constructor from Float has the following syntax.
public Float(float value)
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); System.out.println(float2); } }
The output: