Java basics
floatValue()
The java.lang.Double.floatValue() method returns the float value of this Double object.
Syntax:public float floatValue()
Example:import java.lang.*;
public class DoubleDemo {
public static void main(String[] args) {
// returns the float value of this Double object
Double obj = new Double("5.60");
float f = obj.floatValue();
System.out.println("Value = " + f);
obj = new Double("32");
f = obj.floatValue();
System.out.println("Value = " + f);
}
}
Content
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 77 / 158779926. Delta: 0.00198 с