本帖最后由 che201311 于 2013-12-8 19:54 编辑
举以下例子:
public A(){
private List<B> B;
public List<B> getB() {
return B;
}
public void setB(List<B> b) {
B = b;
}
}
Class cl = A.getClass();
Method method = cl.getMethod("B", B.class);
return method.invoke(A, B);
java编译后List<B>变为java.lang.List 如何解决 |
|