IT评测·应用市场-qidao123.com

标题: 【面试】Java 反射机制(常见面试题) [打印本页]

作者: 伤心客    时间: 2025-3-20 23:20
标题: 【面试】Java 反射机制(常见面试题)
媒介

反射(Reflection) 是 Java 程序开发语言的特征之一,它允许运行中的 Java 程序对自身进行检查,大概说“自审”,并能直接操纵程序的内下属性和方法。
反射是一项高级开发职员应该掌握的“黑科技”,其实反射并不是 Java 独有的,许多编程语言都提供了反射功能。在面试中面试官也常常对反射标题进行考察,反射是所有注解实现的原理,尤其在框架计划中,有不可替换的作用。关于反射,常见的面试考察点包罗:

本篇我们就一起来学习一下 Java 反射机制。
一、反射是什么?

反射的概念是由 Smith 在 1982 年首次提出的,主要是指程序可以访问、检测和修改它本身状态或行为的一种能力。通俗地讲,一提到反射,我们就可以想到镜子。镜子可以明显白白地照出我是谁,还可以照出别人是谁。反映到程序中,反射就是用来让开发者知道这个类中有什么成员,以及别的类中有什么成员。
二、为什么要有反射

有的同学可能会迷惑,Java 已经有了封装为什么还要有反射呢?反射看起来像是粉碎了封装性。甚至让私有变量都可以被外部访问到,使得类变得不那么安全了。我们来看一下 Oracle 官方文档中对反射的形貌:
   Uses of Reflection
Reflection is commonly used by programs which require the ability to examine or modify the runtime behavior of applications running in the Java virtual machine. This is a relatively advanced feature and should be used only by developers who have a strong grasp of the fundamentals of the language. With that caveat in mind, reflection is a powerful technique and can enable applications to perform operations which would otherwise be impossible.
Extensibility FeaturesAn application may make use of external, user-defined classes by creating instances of extensibility objects using their fully-qualified names.
Class Browsers and Visual Development EnvironmentsA class browser needs to be able to enumerate the members of classes. Visual development environments can benefit from making use of type information available in reflection to aid the developer in writing correct code.
Debuggers and Test ToolsDebuggers need to be able to examine private members on classes. Test harnesses can make use of reflection to systematically call a discoverable set APIs defined on a class, to insure a high level of code coverage in a test suite.
  从 Oracle 官方文档中可以看出,反射主要应用在以下几方面:

也就是说,Oracle 盼望开发者将反射作为一个工具,用来资助程序员实现本不可能实现的功能(perform operations which would otherwise be impossible)。正如《人月神话》一书中所言:软件工程没有银弹。很多程序架构,尤其是三方框架,无法保证自己的封装是完美的。如果没有反射,对于外部类的私有成员,我们将束手无策,所以我们有了反射这一后门,为程序计划提供了更大的灵活性。工具本身并没有错,关键在于如何精确地使用。
三、反射 API

Java 类的成员包罗以下三类:属性字段、构造函数、方法。反射的 API 也是与这几个成员相干:


接下来,我们通过一个典型的例子来学习反射。先做预备工作,新建 com.test.reflection 包,在此包中新建一个 Student 类:
  1. package com.test.reflection;
  2. public class Student {
  3.     private String studentName;
  4.     public int studentAge;
  5.     public Student() {
  6.     }
  7.     private Student(String studentName) {
  8.         this.studentName = studentName;
  9.     }
  10.     public void setStudentAge(int studentAge) {
  11.         this.studentAge = studentAge;
  12.     }
  13.     private String show(String message) {
  14.         System.out.println("show: " + studentName + "," + studentAge + "," + message);
  15.         return "testReturnValue";
  16.     }
  17. }
复制代码
可以看到,Student 类中有两个字段、两个构造方法、两个函数,且都是一个私有,一个公有。由此可知,这个测试类根本涵盖了我们平常常用的所有类成员。
3.1 获取 Class 对象的三种方式

获取 Class 对象有三种方式:
  1. //1. 通过字符串获取Class对象,这个字符串必须带上完整路径名
  2. Class studentClass = Class.forName("com.test.reflection.Student");
  3. //2. 通过类的class属性
  4. Class studentClass2 = Student.class;
  5. //3. 通过对象的getClass()函数
  6. Student studentObject = new Student();
  7. Class studentClass3 = studentObject.getClass();
复制代码

通过这三种方式获取到的 Class 对象是同一个,也就是说 Java 运行时,每一个类只会天生一个 Class 对象。
我们将其打印出来测试一下:
  1. System.out.println("class1 = " + studentClass + "\n" +
  2.         "class2 = " + studentClass2 + "\n" +
  3.         "class3 = " + studentClass3 + "\n" +
  4.         "class1 == class2 ? " + (studentClass == studentClass2) + "\n" +
  5.         "class2 == class3 ? " + (studentClass2 == studentClass3));
复制代码
运行程序,输出如下:
  1. class1 = class com.test.reflection.Student
  2. class2 = class com.test.reflection.Student
  3. class3 = class com.test.reflection.Student
  4. class1 == class2 ? true
  5. class2 == class3 ? true
复制代码
OK,拿到 Class 对象之后,我们就可以为所欲为啦!
3.2 获取成员变量

获取字段有两个 API:getDeclaredFields和getFields。他们的区别是:getDeclaredFields用于获取所有声明的字段,包罗公有字段和私有字段,getFields仅用来获取公有字段:
  1. //1. 获取所有声明的字段
  2. Field[] declaredFieldList = studentClass.getDeclaredFields();
  3. for (Field declaredField : declaredFieldList) {
  4.     System.out.println("declared Field: " + declaredField);
  5. }
  6. //2. 获取所有公有的字段
  7. Field[] fieldList = studentClass.getFields();
  8. for (Field field : fieldList) {
  9.     System.out.println("field: " + field);
  10. }
复制代码
运行程序,输出如下:
  1. declared Field: private java.lang.String com.test.reflection.Student.studentName
  2. declared Field: public int com.test.reflection.Student.studentAge
  3. field: public int com.test.reflection.Student.studentAge
复制代码
3.3 获取构造方法

获取构造方法同样包含了两个 API:用于获取所有构造方法的 getDeclaredConstructors和用于获取公有
  1. 构造方法的getConstructors:
  2. // 1.获取所有声明的构造方法
  3. Constructor[] declaredConstructorList = studentClass.getDeclaredConstructors();
  4. for (Constructor declaredConstructor : declaredConstructorList) {
  5.     System.out.println("declared Constructor: " + declaredConstructor);
  6. }
  7. // 2.获取所有公有的构造方法
  8. Constructor[] constructorList = studentClass.getConstructors();
  9. for (Constructor constructor : constructorList) {
  10.     System.out.println("constructor: " + constructor);
  11. }
复制代码
运行程序,输出如下:
  1. declared Constructor: public com.test.reflection.Student()
  2. declared Constructor: private com.test.reflection.Student(java.lang.String)
  3. constructor: public com.test.reflection.Student()
复制代码
3.4.获取非构造方法

同样地,获取非构造方法的两个 API 是:获取所有声明的非构造函数的 getDeclaredMethods 和仅获取公有非构造函数的 getMethods:
  1. // 1.获取所有声明的函数
  2. Method[] declaredMethodList = studentClass.getDeclaredMethods();
  3. for (Method declaredMethod : declaredMethodList) {
  4.     System.out.println("declared Method: " + declaredMethod);
  5. }
  6. // 2.获取所有公有的函数
  7. Method[] methodList = studentClass.getMethods();
  8. for (Method method : methodList) {
  9.     System.out.println("method: " + method);
  10. }
复制代码
运行程序,输出如下:
  1. declared Method: public void com.test.reflection.Student.setStudentAge(int)
  2. declared Method: private java.lang.String com.test.reflection.Student.show(java.lang.String)
  3. method: public void com.test.reflection.Student.setStudentAge(int)
  4. method: public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException
  5. method: public final native void java.lang.Object.wait(long) throws java.lang.InterruptedException
  6. method: public final void java.lang.Object.wait() throws java.lang.InterruptedException
  7. method: public boolean java.lang.Object.equals(java.lang.Object)
  8. method: public java.lang.String java.lang.Object.toString()
  9. method: public native int java.lang.Object.hashCode()
  10. method: public final native java.lang.Class java.lang.Object.getClass()
  11. method: public final native void java.lang.Object.notify()
  12. method: public final native void java.lang.Object.notifyAll()
复制代码
从输出中我们看到,getMethods 方法不但获取到了我们声明的公有方法setStudentAge,还获取到了很多 Object 类中的公有方法。这是因为我们前文已说到:Object 是所有 Java 类的父类。所有对象都默认实现了 Object 类的方法。 而getDeclaredMethods是无法获取到父类中的方法的。
四、实践

学以致用,让我们来一个实际的应用感受一下。还是以 Student 类为例,如果此类在其他的包中,而且我们的需求是要在程序中通过反射获取他的构造方法,构造出 Student 对象,而且通过反射访问他的私有字段和私有方法。那么我们可以这样做:
  1. // 1.通过字符串获取Class对象,这个字符串必须带上完整路径名
  2. Class studentClass = Class.forName("com.test.reflection.Student");
  3. // 2.获取声明的构造方法,传入所需参数的类名,如果有多个参数,用','连接即可
  4. Constructor studentConstructor = studentClass.getDeclaredConstructor(String.class);
  5. // 如果是私有的构造方法,需要调用下面这一行代码使其可使用,公有的构造方法则不需要下面这一行代码
  6. studentConstructor.setAccessible(true);
  7. // 使用构造方法的newInstance方法创建对象,传入构造方法所需参数,如果有多个参数,用','连接即可
  8. Object student = studentConstructor.newInstance("NameA");
  9. // 3.获取声明的字段,传入字段名
  10. Field studentAgeField = studentClass.getDeclaredField("studentAge");
  11. // 如果是私有的字段,需要调用下面这一行代码使其可使用,公有的字段则不需要下面这一行代码
  12. // studentAgeField.setAccessible(true);
  13. // 使用字段的set方法设置字段值,传入此对象以及参数值
  14. studentAgeField.set(student,10);
  15. // 4.获取声明的函数,传入所需参数的类名,如果有多个参数,用','连接即可
  16. Method studentShowMethod = studentClass.getDeclaredMethod("show",String.class);
  17. // 如果是私有的函数,需要调用下面这一行代码使其可使用,公有的函数则不需要下面这一行代码
  18. studentShowMethod.setAccessible(true);
  19. // 使用函数的invoke方法调用此函数,传入此对象以及函数所需参数,如果有多个参数,用','连接即可。函数会返回一个Object对象,使用强制类型转换转成实际类型即可
  20. Object result = studentShowMethod.invoke(student,"message");
  21. System.out.println("result: " + result);
复制代码
程序的逻辑注释已经写得很清晰了,我们再梳理一下:
此中,setAccessible 函数用于动态获取访问权限,Constructor、Field、Method 都提供了此方法,让我们得以访问类中的私有成员。
运行程序,输出如下:
  1. show: NameA,10,message
  2. result: testReturnValue
复制代码
五、常见面试题

5.1. 什么是反射?

反射是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法;对于任意一个对象,都能够调用它的任意一个方法和属性;这种动态获取的信息以及动态调用对象的方法的功能称为 Java 语言的反射机制。
5.2. 那里用到反射机制?


5.3. 什么叫对象序列化,什么是反序列化,实现对象序列化需要做哪些工作?


5.4. 反射机制的优缺点?


5.5. 动态代理是什么?有哪些应用?


5.6. 怎么实现动态代理?


5.7. Java反射机制的作用


5.8. 如何使用Java的反射?



免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4