Float: toString(float f) : Float « java.lang « Java by API






Float: toString(float f)

  


public class Main {
  public static void main(String[] args) throws Exception {

    String str = Float.toString(0.3F);
  }
}

   
    
  








Related examples in the same category

1.Float.MAX_VALUE
2.Float.MIN_VALUE
3.new Float(String s)
4.new Float(float value)
5.Float: byteValue()
6.Float: floatValue()
7.Float: compare(float f1, float f2)
8.Float: compareTo(Float anotherFloat)
9.Float: doubleValue()
10.Float: intValue()
11.Float: isInfinite(float v)
12.Float.isNaN() Returns true if this Float value is a Not-a-Number (NaN),
13.Float: parseFloat(String s)
14.Float: shortValue()
15.Float: toString()
16.Float: valueOf(String stringValue)