这是代码
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
Method applyMethod = GenericTest.class.getMethod("applyVector", Vector.class);
Type [] types=applyMethod.getGenericParameterTypes();
ParameterizedType pType=(ParameterizedType)types[0];
System.out.println(pType.getRawType());
}
private static void applyVector(Vector<Date>v1){
}
总是报这个错误 我异常处理了啊
Exception in thread "main" java.lang.NoSuchMethodException: cn.itcast.day2.GenericTest.applyVector(java.util.Vector)
at java.lang.Class.getMethod(Class.java:1665)
at cn.itcast.day2.GenericTest.main(GenericTest.java:88)//88行就是红字表的
求解答 |