反射
一、反射
反射的概念
反射机制
是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法;
对于任意一个对象,都能够调用它的任意属性和方法;
这种动态获取信息以及动态调用对象方法的功能称为Java语言的反射机制。
获取Class类对象的三种方式
三种方式分类
-
类名.class属性
-
对象名.getClass()方法
-
Class.forName(全类名)方法
反射获取构造方法并使用
Class类获取构造方法对象的方法
方法介绍
方法名 | 说明 |
---|---|
Constructor<?>[] getConstructors() | 返回所有公共构造方法对象的数组 |
Constructor<?>[] getDeclaredConstructors() | 返回所有构造方法对象的数组 |
Constructor getConstructor(Class<?>… parameterTypes) | 返回单个公共构造方法对象 |
Constructor getDeclaredConstructor(Class<?>… parameterTypes) | 返回单个构造方法对象 |
-
获取class对象
三种方式: Class.forName(“全类名”), 类名.class, 对象名.getClass()
-
获取里面的构造方法对象
getConstructor (Class<?>... parameterTypes) getDeclaredConstructor (Class<?>… parameterTypes)
-
如果是public的,直接创建对象
newInstance(Object… initargs)
-
如果是非public的,需要临时取消检查,然后再创建对象
setAccessible(boolean) 暴力反射
反射获取成员变量并使用
Class类获取成员变量对象的方法
方法分类
方法名 | 说明 |
---|---|
Field[] getFields() | 返回所有公共成员变量对象的数组 |
Field[] getDeclaredFields() | 返回所有成员变量对象的数组 |
Field getField(String name) | 返回单个公共成员变量对象 |
Field getDeclaredField(String name) | 返回单个成员变量对象 |
Field类用于给成员变量赋值的方法
方法介绍
方法名 | 说明 |
---|---|
void set(Object obj, Object value) | 赋值 |
Object get(Object obj) | 获取值 |
注意:使用get、set都需要先创建对象
反射获取成员方法并使用
Class类获取成员方法对象的方法
方法分类
方法名 | 说明 |
---|---|
Method[] getMethods() | 返回所有公共成员方法对象的数组,包括继承的 |
Method[] getDeclaredMethods() | 返回所有成员方法对象的数组,不包括继承的 |
Method getMethod(String name, Class<?>… parameterTypes) | 返回单个公共成员方法对象 |
Method getDeclaredMethod(String name, Class<?>… parameterTypes) | 返回单个成员方法对象 |
Method类用于执行方法的方法
方法名 | 说明 |
---|---|
Object invoke(Object obj, Object… args) | 运行方法 |
参数一: 用obj对象调用该方法
参数二: 调用方法的传递的参数(如果没有就不写)
返回值: 方法的返回值(如果没有就不写)
综合演示
代码演示:
//使用getConstructor获取private修饰的构造方法,创建对象
private static void m5(Class clazz) throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {
System.out.println("====使用getConstructor获取private修饰的构造方法,创建对象=====");
Constructor declaredConstructor = clazz.getDeclaredConstructor(String.class);
//如果是非public的,需要临时取消检查,然后再创建对象,暴力反射
declaredConstructor.setAccessible(true);
Student student1 = (Student) declaredConstructor.newInstance("王五");
System.out.println(student1);
}
//使用getConstructor获取空参构造方法,创建对象
private static Student m3(Class clazz) throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {
System.out.println("====使用getConstructor获取空参构造方法,创建对象=====");
Constructor constructor = clazz.getConstructor();
return (Student) constructor.newInstance();
}
//获取全部的构造方法(包含private修饰的)
private static void m2(String s, Constructor[] declaredConstructors2) {
System.out.println(s);
Constructor[] declaredConstructors = declaredConstructors2;
for (Constructor declaredConstructor : declaredConstructors) {
System.out.println(declaredConstructor);
}
}
//获取public修饰的构造方法
private static void m1(String s, Constructor[] constructors2) {
System.out.println(s);
Constructor[] constructors = constructors2;
for (Constructor constructor : constructors) {
System.out.println(constructor);
}
}
//获取被private修饰的成员方法,使用setAccessible暴力反射
private static void m9(Class clazz) throws NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {
Constructor constructor = clazz.getConstructor();
Student student = (Student) constructor.newInstance();
Method method = clazz.getDeclaredMethod("show", String.class);
method.setAccessible(true);
method.invoke(student, "Hello");
}
注意:
setAccessible()暴力反射,先获取成员(被private修饰的成员要用getDeclaredXXX方法来获取),之后调用setAccessible临时取消检查,暴力反射