反射里的问题,例
Method met = value.getMethod("GOGO",String.class,int.class) ;
public Method getMethod(String name,
Class<?>... parameterTypes)
throws NoSuchMethodException,
SecurityException
,老师说取得反射有 三种方法,其中一种是 类.class 里面,但是上面的程序,却是int.class 而不是Integer.class 为什么呢,我知道应该是Integer.TYPE = int.class |
|