- 浏览: 7495 次
- 性别:
- 来自: 武汉
最新评论
文章列表
package com.cn;
import java.lang.reflect.Method;
public class Reflect {/** * 递归向上(父类)寻找方法 * @param clazz0 目标Class * @param methodName 方法名称 * @param arg_classes 方法参数Class * @return Method * @throws Exception */public static Method getMethod(Class clazz0, String methodNa ...