The getFloat() method of java.lang.reflect.Field used to get the value of float which has to be static or instance field type. This method also used to get the value of another primitive type convertible to type float via a widening conversion. When a class contains a static or instance float field and we want to get the value of that field then we can use this method to return the value of Field.
Syntax:
public float getFloat(Object obj)
throws IllegalArgumentException,
IllegalAccessException
Parameters: This method accepts a single parameter obj which is the object to extract the float value from.
Return value: This method returns the value of field converted to type float.
Exception: This method throws following Exception:
- IllegalAccessException: This exception is thrown if Field object is enforcing Java language access control and the underlying field is inaccessible.
- IllegalArgumentException: This exception is thrown if the specified object is not an instance of the class or interface declaring the underlying field or if the field value cannot be converted to the type float by a widening conversion.
- NullPointerException: This exception is thrown if the specified object is null and the field is an instance field.
- ExceptionInInitializerError: This exception is thrown if the initialization provoked by this method fails.
Below programs illustrate getFloat() method:
Program 1:
import java.lang.reflect.Field;
public class GFG {
public static void main(String[] args)
throws NoSuchFieldException,
SecurityException,
IllegalArgumentException,
IllegalAccessException
{
User user = new User();
Field field = User. class .getField( "Marks" );
float value = field.getFloat(user);
System.out.println( "Value of float Field"
+ " Marks is " + value);
field = User. class .getField( "Fees" );
value = field.getFloat(user);
System.out.println( "Value of float Field"
+ " Fees is " + value);
}
}
class User {
public static float Marks = 94 .13f;
public static float Fees = 1343413 .99f;
public static String name = "Aman" ;
public static float getMarks()
{
return Marks;
}
public static void setMarks( float marks)
{
Marks = marks;
}
public static float getFees()
{
return Fees;
}
public static void setFees( float fees)
{
Fees = fees;
}
public static String getName()
{
return name;
}
public static void setName(String name)
{
User.name = name;
}
}
|
Output:
Value of float Field Marks is 94.13
Value of float Field Fees is 1343414.0
Program 2:
import java.lang.reflect.Field;
public class GFG {
public static void main(String[] args)
throws NoSuchFieldException,
SecurityException,
IllegalArgumentException,
IllegalAccessException
{
RealNumbers real = new RealNumbers();
Field field
= RealNumbers. class
.getField( "value" );
float value = field.getFloat(real);
System.out.println( "Value: " + value);
}
static class RealNumbers {
public static float value
= 123432123 .1234f;
public static float getValue()
{
return value;
}
public static void setValue( float value)
{
RealNumbers.value = value;
}
}
}
|
Output:
Value: 1.2343212E8
References: https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html#getFloat-java.lang.Object-