摘要:
获取 Class 类中的字段(更多请查看JDK文档,关键字:Class) Field getField(String name) 返回类中某个 公共字段 Field[] getFields() 返回类中 所有公共字段 [ ] Field getDeclaredField(String name) 返 阅读全文
摘要:
获取 Method 对象 (更多请查看JDK文档,关键字:Class) Method[] getMethods() 类中的所有公共的成员方法,包括继承过来的 Method[] getDeclaredMethods() 类中所有的成员方法,不包括继承的 Method getMethod(String 阅读全文