search
HomeJavajavaTutorialIntroduction to analysis of Java reflection
Introduction to analysis of Java reflectionMar 09, 2017 pm 07:05 PM
java reflection

This document describes the analysis and introduction of Java reflection

1. What is reflection?
From Baidu Encyclopedia, we can know that Java reflection is in the running state. For any class, we can know all the properties and methods of this class; for any object, we can call any of its methods and properties; and can change its properties. And this is why Java is considered dynamic (or quasi-dynamic, why is it said to be quasi-dynamic, because the general definition of a dynamic language is that when the program is running, it allows the program structure or variable type to be changed. This language is called a dynamic language. From this point of view, Perl, Python, and Ruby are dynamic languages, and C++, Java, and C# are not dynamic languages.) A key property of languages.

2. What can reflection do?
We know that the reflection mechanism allows the program to obtain the internal information of any class with a known name at runtime, including its modifiers (modifiers), fields (properties), methods (methods), etc., and can be changed at runtime. fields content or calling methods. Then we can write code more flexibly, and the code can be assembled at runtime without the need for source code linking between components, reducing the coupling of the code; there is also the implementation of dynamic agents, etc.; but we need to pay attention to the improper use of reflection. It will be very costly!

3. The specific implementation of reflection

The following is a basic class Person

package com.ys.reflex;
public class Person {
    //私有属性
    private String name = "Tom";
    //公有属性
    public int age = 18;
    //构造方法
    public Person() {    
    }
    //私有方法
    private void say(){
        System.out.println("private say()...");
    }
    //公有方法
    public void work(){
        System.out.println("public work()...");
    }
}

①. Get the Class 3 This way

//1、通过对象调用 getClass() 方法来获取,通常应用在:比如你传过来一个 Object
//  类型的对象,而我不知道你具体是什么类,用这种方法
  Person p1 = new Person();
  Class c1 = p1.getClass();
        
//2、直接通过 类名.class 的方式得到,该方法最为安全可靠,程序性能更高
//  这说明任何一个类都有一个隐含的静态成员变量 class
  Class c2 = Person.class;
        
//3、通过 Class 对象的 forName() 静态方法来获取,用的最多,
//   但可能抛出 ClassNotFoundException 异常
  Class c3 = Class.forName("com.ys.reflex.Person");

It should be noted that:A class will only have one Class instance in the JVM,That is, we will perform the above-obtained c1, c2, c3 equals comparison, found to be true

②,Get member variables, member methods, interfaces, super classes, constructors, etc. through the Class class

Check the API and you can see that Class has many methods:

GetName(): Get the complete name of the class.
GetFields(): Get the public type attributes of the class.
 getDeclaredFields(): Get all attributes of the class. Including private declared and inherited classes
GetMethods(): Get the public type method of the class.
 getDeclaredMethods(): Get all methods of the class. Including private declared and inherited classes
GetMethod(String name, Class[] parameterTypes): Get the specific method of the class, the name parameter specifies the name of the method, and the parameterTypes parameter specifies the parameter type of the method.
GetConstructors(): Get the public type constructor of the class.
 getConstructor(Class[] parameterTypes): Get the specific constructor method of the class. The parameterTypes parameter specifies the parameter type of the constructor method.
 newInstance(): Create an object of this class through the constructor method of the class without parameters.

We use an example to comprehensively demonstrate the above method:

//获得类完整的名字
String className = c2.getName();
System.out.println(className);//输出com.ys.reflex.Person
        
//获得类的public类型的属性。
Field[] fields = c2.getFields();
for(Field field : fields){
   System.out.println(field.getName());//age
}
        
//获得类的所有属性。包括私有的和继承类的
Field [] allFields = c2.getDeclaredFields();
for(Field field : allFields){
    System.out.println(field.getName());//name    age
}
        
//获得类的public类型的方法。这里包括 Object 类的一些方法
Method [] methods = c2.getMethods();
for(Method method : methods){
    System.out.println(method.getName());//work waid equls toString hashCode等
}
        
//获得类的所有方法。
Method [] allMethods = c2.getDeclaredMethods();
for(Method method : allMethods){
    System.out.println(method.getName());//work say
}
        
//获得指定的属性
Field f1 = c2.getField("age");
System.out.println(f1);
//获得指定的私有属性
Field f2 = c2.getDeclaredField("name");
//启用和禁用访问安全检查的开关,值为 true,则表示反射的对象在使用时应该取消 java 语言的访问检查;反之不取消
f2.setAccessible(true);
System.out.println(f2);
                
//创建这个类的一个对象
Object p2 =  c2.newInstance();
//将 p2 对象的  f2 属性赋值为 Bob,f2 属性即为 私有属性 name
f2.set(p2,"Bob");
//使用反射机制可以打破封装性,导致了java对象的属性不安全。 
System.out.println(f2.get(p2)); //Bob
        
//获取构造方法
Constructor [] constructors = c2.getConstructors();
for(Constructor constructor : constructors){
    System.out.println(constructor.toString());//public com.ys.reflex.Person()
}

4. Reflection summary

Flexible use of reflection can make our code more flexible, here is an example of JDBC native code registration Drivers, hibernate's entity classes, Spring's AOP, etc. all have reflection implementations. But everything has two sides. Reflection will also increase the performance and complexity of the system. Reasonable use is the truth!

The above is the detailed content of Introduction to analysis of Java reflection. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
使用Java反射进行逆向工程:揭秘软件的内部运作方式使用Java反射进行逆向工程:揭秘软件的内部运作方式Feb 19, 2024 pm 11:20 PM

Java反射是一个强大的工具,它可以让你访问类的私有字段和方法,从而揭秘软件的内部运作方式。这在逆向工程、软件分析和调试等领域非常有用。要使用Java反射,首先需要导入java.lang.reflect包。然后,你可以使用Class.forName()方法来获取一个类的Class对象。一旦有了Class对象,你就可以使用各种方法来访问类的字段和方法。例如,你可以使用getDeclaredFields()方法来获取类的所有字段,包括私有字段。你也可以使用getDeclaredMethods()方法

java的反射机制原理是什么java的反射机制原理是什么Jun 21, 2023 am 10:53 AM

Java反射机制原理是,当一个字节码文件加载到内存的时候,jvm会对该字节码进行解剖,创建一个对象的Class对象,jvm把字节码文件信息都存储到Class对象中,只要获取到Class对象,就能使用该对象设置对象的属性或方法等。反射机制是,在运行状态中对任意一个类,都知道这个类的所有属性和方法,对于任意一个对象,能够调用其任意属性和方法,动态获取信息以及动态调用对象方法的功能。

如何使用Java反射机制创建对象?如何使用Java反射机制创建对象?Apr 15, 2024 pm 04:18 PM

通过Java反射机制创建对象步骤如下:加载目标类:使用Class.forName()方法。获取构造函数:使用getDeclaredConstructor()方法。创建对象:使用newInstance()方法传递参数。

java反射如何获取属性的值java反射如何获取属性的值Jan 03, 2024 pm 03:05 PM

获取方法:1、创建一个示例对象;2、通过field.get(person)获取了字段的值,其中person是示例对象,而field是Field对象,表示一个字段;3、通过setAccessible(true)设置字段为可访问状态,即使是私有字段也可以获取其值;4、遍历字段数组,可以获取每个字段的名称和对应的值,并打印出来即可。

Java中的NoSuchFieldException异常在什么场景下出现?Java中的NoSuchFieldException异常在什么场景下出现?Jun 25, 2023 am 11:51 AM

Java中的NoSuchFieldException异常指的是在反射过程中试图访问不存在的字段(Field)时抛出的异常。在Java中,反射可以让我们通过代码来操纵程序中的类、方法、变量等,使得程序具有更高的灵活性和扩展性。但是,在使用反射时,如果访问的字段不存在,则会抛出NoSuchFieldException异常。NoSuchFieldException

深入理解Java反射机制的原理与应用深入理解Java反射机制的原理与应用Dec 23, 2023 am 09:09 AM

深入理解Java反射机制的原理与应用一、反射机制的概念与原理反射机制是指在程序运行时动态地获取类的信息、访问和操作类的成员(属性、方法、构造方法等)的能力。通过反射机制,我们可以在程序运行时动态地创建对象、调用方法和访问属性,而不需要在编译时知道类的具体信息。反射机制的核心是java.lang.reflect包中的类和接口。其中,Class类代表一个类的字节

java反射有哪些调用方法java反射有哪些调用方法Dec 22, 2023 pm 05:09 PM

java反射调用方法有:1、Class类;2、Constructor类;3、Method类;4、Field类;5、ClassLoader类。详细介绍:1、Class类,用于获取类的信息,包括类的名称、成员变量和方法等,可以通过Class类的"newInstance()"方法创建类的实例;2、Constructor类,用于获取构造函数的参数类型、修饰符和返回类型等信息等等。

如何使用java反射获取对象属性和值如何使用java反射获取对象属性和值Jan 03, 2024 pm 02:43 PM

获取方法:1、创建一个Person类,通过反射获取了该类的Class对象;2、使用getDeclaredFields方法获取了该类的所有字段;3、通过遍历字段数组,设置字段为可访问状态,然后使用get方法获取字段的值,并打印字段名和值即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool