Home  >  Article  >  Java  >  What is the principle and function of Java reflection?

What is the principle and function of Java reflection?

PHPz
PHPzforward
2023-04-26 23:31:06744browse

1. Process of calling reflection

(1)Preparation phase: Load all classes during compilation and save the meta information of each class to Class In the class object, each class corresponds to a Class object

(2)Get the Class object: Call x.class/x.getClass()/Class.forName() to get the Class of x Object clz (the bottom layers of these methods are all native methods, which are written at the bottom of the JVM. We will not explore the bottom layer of the JVM for now)

(3)Perform actual reflection operations: Obtain the Field/Method/Constructor object through the clz object for further operations

2. Obtain the class class

To obtain the information of a class through reflection, you must first Get the Class class instance corresponding to the class. The Class class instance represents the class and interface of the running Java application. The Class class has no public constructor. The Class class object is in a binary byte stream (usually a .class file, which can also be obtained through the network or zip package) When loaded by the JVM, it is called defineClass of the class loader () method to construct.

/**
 * Instances of the class {@code Class} represent classes and
 * interfaces in a running Java application.
 * {@code Class} has no public constructor. Instead {@code Class}
 * objects are constructed automatically by the Java Virtual Machine as classes
 * are loaded and by calls to the {@code defineClass} method in the class
 * loader.
*/
 
public final class Class<T> implements java.io.Serializable,GenericDeclaration,Type,AnnotatedElement {
    ......
}

The above is the detailed content of What is the principle and function of Java reflection?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete