WALA/com.ibm.wala.core.testdata/src/reflection/Reflect10.java

17 lines
542 B
Java

package reflection;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
/**
* Test of Method.invoke
*/
public class Reflect10 {
public static void main(String[] args) throws ClassNotFoundException, IllegalArgumentException, InstantiationException,
IllegalAccessException, InvocationTargetException, SecurityException, NoSuchMethodException {
Class c = Class.forName("java.lang.Integer");
Method[] m = c.getMethods();
m[0].invoke(new Integer(2), new Object[] {});
}
}