1. What is JAVA’s reflection mechanism (recommended: java video tutorial)
Java reflection is Java regarded as dynamic (or quasi- dynamic) a key property of languages. This mechanism allows the program to obtain the internal information of any class with a known name through the Reflection APIs at runtime, including its modifiers (such as public, static, etc.), superclass (such as Object), implemented interfaces (such as Cloneable), as well as All information about fields and methods, and can change the contents of fields or invoke methods at runtime.
The Java reflection mechanism allows the program to load, detect, and use classes that are completely unknown during compilation at runtime.
In other words, Java can load a class whose name is known only at runtime and obtain its complete structure.
2. Reflection API provided in JDK
The API related to Java reflection is in the package java.lang.reflect. The reflect package of JDK 1.6.0 is as shown below:
Member interface | This interface can obtain information about the class members (fields or methods) and the latter constructor. |
AccessibleObject class | This class is the base class for domain objects, method objects, and constructor objects. It provides the ability to mark reflected objects as suppressing default Java language access control checks when used. |
Array class | This class provides methods to dynamically generate and access JAVA arrays. |
Constructor class | Provides information about the constructor of a class and an interface for accessing the constructor of the class. |
Field class | Provides field information of a class and an interface for accessing the field of the class. |
Method class | Provides method information of a class and an interface for accessing the methods of the class. |
Modifier class | Provides static methods and constants to decode class and member access modifiers. |
Proxy class | Provides static methods to dynamically generate proxy classes and class instances. |
3. What functions does the JAVA reflection mechanism provide?
The Java reflection mechanism provides the following functions:
Determine the class to which any object belongs at run time
At run time Construct an object of any class
Judge the member variables and methods of any class at runtime
Call the method of any object at runtime
At runtime When creating a new class object
When using Java's reflection function, you must first obtain the Class object of the class, and then obtain other objects through the Class object.
Here we first define the class used for testing:
class Type{ public int pubIntField; public String pubStringField; private int prvIntField; public Type(){ Log("Default Constructor"); } Type(int arg1, String arg2){ pubIntField = arg1; pubStringField = arg2; Log("Constructor with parameters"); } public void setIntField(int val) { this.prvIntField = val; } public int getIntField() { return prvIntField; } private void Log(String msg){ System.out.println("Type:" + msg); } } class ExtendType extends Type{ public int pubIntExtendField; public String pubStringExtendField; private int prvIntExtendField; public ExtendType(){ Log("Default Constructor"); } ExtendType(int arg1, String arg2){ pubIntExtendField = arg1; pubStringExtendField = arg2; Log("Constructor with parameters"); } public void setIntExtendField(int field7) { this.prvIntExtendField = field7; } public int getIntExtendField() { return prvIntExtendField; } private void Log(String msg){ System.out.println("ExtendType:" + msg); } }
1. Obtain the Class object of the class
The instance of the Class class represents the class and class in the running Java application. interface. There are many ways to obtain the Class object of a class:
Call getClass:
Boolean var1 = true; Class<?> classType2 = var1.getClass(); System.out.println(classType2);
Output: class java.lang.Boolean
Use .class syntax :
Class<?> classType4 = Boolean.class; System.out.println(classType4);
Output: class java.lang.Boolean
Use static method Class.forName():
Class<?> classType5 = Class.forName("java.lang.Boolean"); System.out.println(classType5);
Output: class java.lang.Boolean
Use the TYPE syntax of primitive wrapper classes:
The primitive type returned here is different from that returned by Boolean.class
Class<?> classType3 = Boolean.TYPE; System.out.println(classType3);
Output: boolean
2. Get the Fields of the class
You can get an attribute of a class through the reflection mechanism, and then change the field corresponding to an instance of this class. The value of this property. JAVA's Class
public Field getField(String name) | Returns a Field object that reflects the specified public member field of the class or interface represented by this Class object |
public Field[] getFields() | Returns an array containing certain Field objects that reflect all accessible properties of the class or interface represented by this Class object Public Field |
Returns a Field object that reflects the specified declared field of the class or interface represented by this Class object | |
Returns an array of Field objects that reflect all fields declared by the class or interface represented by this Class object |
The above is the detailed content of Detailed introduction to java reflection mechanism. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
