Class类中用于获取成员方法的方法
Method[] getMethods(): 返回所有公共成员方法对象的数组,包括继承
Method[] getDeclaredMethods(): 返回所有成员方法对象的数组,不包括继承
Method getMethod(String name,Class )
Method getDeclaredMethod()
Method类中用于创建对象的方法
Object invoke(Object obj,Object …args):运行方法
参数一:用obj对象调用该方法
参数二:调用方法传递的参数(如果没有就不写)
返回值:方法的返回值(如果没有就不写)
public class Demo {
public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, IllegalAccessException {
//1、获取class字节码文件
Class clazz = Class.forName("反射.Method类.Student");
//2、获取里面所有的方法对象(包含父类中所有的公共方法)
Method[] methods = clazz.getMethods();
for (Method method:methods){
//System.out.println(method);
}
//3、获取里面所有的方法(不可以获取父类的,但是可以获取本类中私有的方法)
Method[] declaredMethods = clazz.getDeclaredMethods();
for (Method method:declaredMethods){
System.out.println(method);
}
//4、获取单个的方法(参数一:方法的名字 参数二:参数类型,这是为了防止重载)
Method eat = clazz.getDeclaredMethod("eat", String.class);
System.out.println(eat);
//5、获取方法的修饰符
int modifiers = eat.getModifiers();
System.out.println(modifiers);
//6、获取方法的名字
String name = eat.getName();
System.out.println(name);
//7、获取方法的形参
Parameter[] parameters = eat.getParameters();
for (Parameter parameter:parameters){
System.out.println(parameter);
}
//8、获取方法抛出的异常
Class[] exceptionTypes = eat.getExceptionTypes();
for (Class exceptionTyep:exceptionTypes){
System.out.println(exceptionTyep);
}
//9、方法运行
//Object invoke(Object obj,Object ...args):运行方法
//参数一:用obj对象调用该方法
//参数二:调用方法传递的参数(如果没有就不写)
// 返回值:方法的返回值(如果没有就不写)
//调用者
Student stu=new Student();
eat.setAccessible(true);//临时取消权限检测
//参数一表示方法的调用者,参数二表示实际参数
String result =(String) eat.invoke(stu, "汉堡包");
System.out.println(result);
}
}
总结
1、获取字节码文件对象
2、获取字节码文件对象中的方法对象
3、通过方法对象获取这个对象的属性
4、创建对象,利用实例获取对象中的各部分元素
注意:如获取private修饰的构造方法,成员变量,成员方法时,需要使用setAccessible()方法暂时跳过权限检测
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net