摘要:
@SuppressWarnings("unchecked") public void testT() { clazz = (Class)( (ParameterizedType)getClass() //Class字节码 .getGenericSuperclass()) //因为对于T.class我们无法获取,但是这个方法就能获取到父类的参数类型,返回值为ParameterizedType .getActualTypeArguments()[0]; ... 阅读全文