Field.getShort(Object obj) has the following syntax.
public short getShort(Object obj) throws IllegalArgumentException , IllegalAccessException
In the following code shows how to use Field.getShort(Object obj) method.
//from w w w . j a va2 s . c o m import java.lang.reflect.Field; class MyClass { public short i = 9; } 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.getShort(x)); f.setShort(x, (short)9); System.out.println(f.getShort(x)); } }
The code above generates the following result.