Tutorials References Menu

Java float Keyword

❮ Java Keywords


Example

float myNum = 5.75f;
System.out.println(myNum);

Try it Yourself »


Definition and Usage

The float keyword is a data type that can store fractional numbers from 3.4e−038 to 3.4e+038.

Note that you should end the value with an "f":


Related Pages

Read more about data types in our Java Data Types Tutorial.


❮ Java Keywords