search
HomeJavajavaTutorialSummary of knowledge about Java reflection mechanism that needs to be mastered

反射机制是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法;对于任意一个对象,都能够调用它的任意一个方法和属性;这种动态获取的信息以及动态调用对象的方法的功能称为java语言的反射机制。【翻译于 官方文档】


This article will introduce the knowledge of reflection from the following aspects: reflection of

class using

method

Reflection of constructor

Reflection of member variables

1. What is a class

In the object-oriented world, everything is an object. Classes are objects, and classes are instance objects of the java.lang.Class class. In addition, the class class can only be new by the Java virtual machine. Any class is an instance object of the Class class. This instance object has three expression methods:

public class User{
}

public class ClassTest{
User u=new User();
//Method 1 :
Class c1=User.class;
//Method 2:
Class c2=u.getClass();
//Method 3:
Class c3=Class.forName(" com.forezp.User");

//You can create an instance object of the class through the type of the class
User user=(User)c1.newInstance();
}

2. Dynamic loading of class classes

Class.forName (full name of the class); This method not only represents the type of the class, but also represents the dynamically loaded class. Classes loaded at compile time are statically loaded, and classes loaded at runtime are dynamically loaded.

3. Obtain method information

Basic data types and void keywords are instances of the Class class; the name of the class can be obtained through getame();getSimpleName() .

Class c1=String.class;
Class c2=int.class;
Class c3=void.class;
System.out.println(c1.getName());
System.out.println(c2.getSimpleName());
Get all methods of the class and print them out:

public static void printClassInfo(Object object){
Class c=object .getClass();
System.out.println("Name of class: "+c.getName());

/**
* A member method is a method object
* getMethod() gets all the public methods, including those inherited from the parent class
* getDeclaredMethods() gets all the methods of the class, including private, but not inherited Methods.
         */
Method[] methods= c.getMethods();//Get methods
//Get all methods, including private,c.getDeclaredMethods();

for(int i=0;i                                                                                                                                                   use using using using                 out out through off ’s off ’s ‐ ‐ ‐ ‐‐ ‐ ‐                                                                                                  :
System.out.print(methods[i].getName()+"(");

Class[] parameterTypes=methods[i].getParameterTypes();
for(Class class1:parameterTypes){
              System.out.print(class1.getName()+",");
          }
            System.out.println(")");
    }
}
public class ReflectTest {

public static void main(String[] args){
String s="ss";
ClassUtil.printClassInfo(s);
}
}
Run:


类的名称:java.lang.String

booleanequals(java.lang.Object,)

java.lang.StringtoString()

inthashCode()

…

4. Obtain the member variable information
You can also obtain the member variable information of the class

public static void printFiledInfo(Object o){


Class c=o.getClass();
/**
* getFileds() gets public
* getDeclaredFields() gets all
*/
Field[] fileds=c.getDeclaredFields();

for (FIELD F: FILEDS) {
// The type of member variables
Class Filedtype = f.gettype ();
System.Println (Filedtype.getName ()+"" "" +f.getName());
}
## }
public static void main(String[] args){
              String s="ss";
                                                                                                    ’ s ’ s =" s s t t                ’       ‐ ‐ ‐ ‐‐ ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐ printClassInfo(s);
ClassUtil.printFiledInfo(s);
}
Run:


[C value

int hash

long serialVersionUID

[Ljava.io.ObjectStreamField; serialPersistentFields

java.util.Comparator CASE_INSENSITIVE_ORDER

int HASHING_SEED

int hash32

五、获取构造函数的信息

public static void printConstructInfo(Object o){
       Class c=o.getClass();

       Constructor[] constructors=c.getDeclaredConstructors();
       for (Constructor con:constructors){
           System.out.print(con.getName()+”(“);

           Class[] typeParas=con.getParameterTypes();
           for (Class class1:typeParas){
               System.out.print(class1.getName()+” ,”);
           }
           System.out.println(“)”);
       }
   }
public static void main(String[] args){
               String s="ss";
               //ClassUtil.printClassInfo(s);
               //ClassUtil.printFiledInfo(s);
               ClassUtil.printConstructInfo(s);
       }
运行:

java.lang.String([B ,)

java.lang.String([B ,int ,int ,)

java.lang.String([B ,java.nio.charset.Charset ,)

java.lang.String([B ,java.lang.String ,)

java.lang.String([B ,int ,int ,java.nio.charset.Charset ,)

java.lang.String(int ,int ,[C ,)

java.lang.String([C ,boolean ,)

java.lang.String(java.lang.StringBuilder ,)

java.lang.String(java.lang.StringBuffer ,)

...

六、方法反射的操作

获取一个方法:需要获取方法的名称和方法的参数才能决定一个方法。

方法的反射操作:

method.invoke(对象,参数列表);
举个例子:

class A{

   public void add(int a,int b){
       System.out.print(a+b);
   }

   public void toUpper(String a){
       System.out.print(a.toUpperCase());
   }
}
public static void main(String[] args) {
       A a=new A();
       Class c=a.getClass();
       try {
           Method method=c.getMethod("add",new Class[]{int.class,int.class});
           //也可以 Method method=c.getMethod("add",int.class,int.class);
           //方法的反射操作
           method.invoke(a,10,10);
       }catch (Exception e){
           e.printStackTrace();
       }
   }
运行:

20


本篇文章已经讲解了java反射的基本用法, 它可以在运行时判断任意一个对象所属的类;在运行时构造任意一个类的对象;在运行时判断任意一个类所具有的成员变量和方法;在运行时调用任意一个对象的方法;生成动态代理。

The above is the detailed content of Summary of knowledge about Java reflection mechanism that needs to be mastered. 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反射机制如何修改类的行为?May 03, 2024 pm 06:15 PM

Java反射机制允许程序动态修改类的行为,无需修改源代码。通过Class对象操作类,可以通过newInstance()创建实例,修改私有字段值,调用私有方法等。但应谨慎使用反射,因为它可能会导致意外的行为和安全问题,并有性能开销。

Java反射机制的替代方案有哪些?Java反射机制的替代方案有哪些?Apr 15, 2024 pm 02:18 PM

Java反射机制的替代方案包括:1.注解处理:使用注解添加元数据,并在编译时生成代码来处理信息。2.元编程:在运行时生成和修改代码,可动态创建类和获取信息。3.代理:创建与现有类具有相同接口的新类,可以在运行时增强或修改其行为。

Java中的NoSuchFieldException异常是如何产生的?Java中的NoSuchFieldException异常是如何产生的?Jun 25, 2023 pm 04:30 PM

Java是目前世界上使用最广泛的编程语言之一,而在Java编程过程中,异常处理是非常重要的一环。本文将会介绍Java中的NoSuchFieldException异常,它是如何产生的以及如何处理它。一、NoSuchFieldException异常的定义NoSuchFieldException是Java中的一种Checked异常,表示在没有发现指定的字段时抛出的

Java反射机制在Spring框架中的应用?Java反射机制在Spring框架中的应用?Apr 15, 2024 pm 02:03 PM

Java反射机制在Spring框架中广泛用于以下方面:依赖注入:通过反射实例化bean和注入依赖项。类型转换:将请求参数转换为方法参数类型。持久化框架集成:映射实体类和数据库表。AspectJ支持:拦截方法调用和增强代码行为。动态代理:创建代理对象以增强原始对象的行为。

反射机制在Java并发中的应用?反射机制在Java并发中的应用?Apr 15, 2024 pm 09:03 PM

答案:反射机制通过反射API允许Java程序在运行时检查和修改类和对象,在Java并发中可用于实现灵活的并发机制。应用:动态创建线程。动态改变线程优先级。注入依赖。

Java反射机制在云计算中的应用?Java反射机制在云计算中的应用?Apr 16, 2024 am 09:18 AM

Java反射在云计算中的应用广泛,包括:动态服务发现(从服务注册表中获取服务类并调用方法)、自动扩缩容(监视系统指标并调整服务实例数量)、动态配置加载、代码生成和自定义异常处理。通过反射,程序可以轻松适应云计算环境的动态和分布式特性,实现自动化部署等自动化任务。

PHP中的反射机制PHP中的反射机制Aug 31, 2023 pm 01:57 PM

反射通常被定义为程序在执行时检查自身并修改其逻辑的能力。用不太专业的术语来说,反射是要求一个对象告诉您它的属性和方法,并更改这些成员(甚至是私有成员)。在本课程中,我们将深入探讨如何实现这一点,以及它何时可能有用。一点历史在编程时代的初期,出现了汇编语言。用汇编语言编写的程序驻留在计算机内部的物理寄存器中。通过读取寄存器可以随时检查其组成、方法和值。更重要的是,您可以在程序运行时通过简单地修改这些寄存器来更改程序。它需要对正在运行的程序有一些深入的了解,但它本质上是反思性的。与任何很酷的玩具一样

Java反射机制的原理是什么?Java反射机制的原理是什么?Apr 15, 2024 pm 02:48 PM

java反射机制通过以下机制实现:反射API提供用于访问和操作反射数据的接口和类。JVM维护一个包含所有已加载类的元数据的内部数据结构。反射机制通过访问这些数据来执行内省操作。

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

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

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.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

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.