Retrieve fields with data type Reflection Java

It is advised to read the notes on Java Reflection API before attempting the programs on this Retrieve fields with data type. import java.lang.reflect.Field; public class Demo extends Test { public int price; public double rate; public String name; public static void main(String args[]) { Demo d1 = new Demo(); Class c = d1.getClass(); Field …

Retrieve fields with data type Reflection Java Read More »