Java Field.getDouble(Object obj)
Syntax
Field.getDouble(Object obj) has the following syntax.
public double getDouble(Object obj) throws IllegalArgumentException , IllegalAccessException
Example
In the following code shows how to use Field.getDouble(Object obj) method.
//from w w w. jav a 2s. c o m
import java.lang.reflect.Field;
class MyClass {
public double i = 1.123;
}
public class Main {
public static void main(String[] args) throws Exception {
Class<?> clazz = Class.forName("MyClass");
MyClass x = (MyClass) clazz.newInstance();
Field f = clazz.getField("i");
System.out.println(f.getDouble(x));
f.setDouble(x, 9.99);
System.out.println(f.getDouble(x));
}
}
The code above generates the following result.