search
HomeJavajavaTutorialHow to define and use Java reflection

    Definition

    The ability to dynamically obtain and manipulate elements such as classes, methods, properties, etc. during the running of a Java program is called Java reflection. It allows us to obtain information about a class and operate on it while the program is running, which greatly expands the flexibility and scalability of the Java language.

    In Java, each class has a corresponding Class object, and reflection uses this Class object to obtain and operate class information.

    Get the Class object

    In Java, there are three ways to get the Class object:

    1.1 Get the Class object through the class name

    This is the most common One way is to use the Class.forName() method to obtain the Class object. For example:

    Class<?> clazz = Class.forName("com.example.MyClass");

    1.2 Obtain the Class object through the object

    You can obtain the Class object to which it belongs through the getClass() method of the object. For example:

    MyClass obj = new MyClass();
    Class<?> clazz = obj.getClass();

    1.3 Obtain Class object through class literal constant

    Use class literal constant to obtain Class object, for example:

    Class<?> clazz = MyClass.class;

    Get class information

    By obtaining the Class object, we can obtain various information about the class, such as class name, inherited class, implemented interface, constructor, methods and fields, etc. The following is an example of obtaining the fields of a class.

    2.1 Get all fields

    You can get all public modified fields through the getFields() method of the Class object, for example:

    Field[] fields = clazz.getFields();
    for (Field field : fields) {
        System.out.println(field.getName());
    }

    2.2 Get the specified fields

    You can get the public modified fields with the specified name through the getField() method of the Class object, for example:

    Field field = clazz.getField("name");
    System.out.println(field.getName());

    2.3 Get all declared fields

    Can get it through the getDeclaredFields() method of the Class object All declared fields, including fields modified by public, protected, and private, for example:

    Field[] fields = clazz.getDeclaredFields();
    for (Field field : fields) {
        System.out.println(field.getName());
    }

    2.4 Get the specified declared field

    You can obtain the declaration with the specified name through the getDeclaredField() method of the Class object Fields, including fields modified by public, protected, and private, for example:

    Field field = clazz.getDeclaredField("name");
    System.out.println(field.getName());

    Operation classes and objects

    Once we obtain the class information, we can use reflection to operate classes and objects, such as Create objects, call methods and access properties. The following is an example of creating objects and accessing properties.

    3.1 Create an object

    You can create an object through the newInstance() method of the Class object, for example:

    MyClass obj = (MyClass) clazz.newInstance();

    3.2 Access properties

    You can use reflection Access the properties of an object, including getting and setting property values. For example:

    Field field = clazz.getDeclaredField("name");
    field.setAccessible(true);
    field.set(obj, "张三");
    String name = (String) field.get(obj);

    The above code first obtains the name attribute of the class and sets it to be accessible, then sets the attribute value to "Zhang San" through reflection, and finally obtains the attribute value and assigns it to the name variable.

    Reflection application scenarios

    Reflection is widely used in Java. Common scenarios include:

    4.1 Dependency injection

    Dependency injection is a A method to dynamically inject dependencies into a class through reflection. For example, dependency injection in the Spring framework is implemented through reflection.

    4.2 Configuration file parsing

    In Java, configuration files such as XML and JSON can be parsed through reflection, and the data in the configuration file can be converted into Java objects.

    4.3 Dynamic proxy

    Dynamic proxy is a method of generating proxy classes through reflection. Dynamic proxies allow proxy objects to be generated at runtime to enhance or intercept target objects.

    Advantages and Disadvantages of Reflection

    Java's flexibility and scalability can be achieved by dynamically obtaining and manipulating class information at runtime. This is the advantage of reflection. Reflection can realize some functions that cannot be achieved by traditional methods, such as dynamic proxy, dependency injection, etc.

    Due to the need to dynamically obtain and operate class information at runtime, the performance of reflection operations is usually worse than direct operation of classes. This is a shortcoming of reflection. Using reflection reduces code readability because code that calls an object's methods or accesses properties is usually simpler and clearer than code that uses reflection.

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

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    Java Platform Independence: Compatibility with different OSJava Platform Independence: Compatibility with different OSMay 13, 2025 am 12:11 AM

    JavaachievesplatformindependencethroughtheJavaVirtualMachine(JVM),allowingcodetorunondifferentoperatingsystemswithoutmodification.TheJVMcompilesJavacodeintoplatform-independentbytecode,whichittheninterpretsandexecutesonthespecificOS,abstractingawayOS

    What features make java still powerfulWhat features make java still powerfulMay 13, 2025 am 12:05 AM

    Javaispowerfulduetoitsplatformindependence,object-orientednature,richstandardlibrary,performancecapabilities,andstrongsecurityfeatures.1)PlatformindependenceallowsapplicationstorunonanydevicesupportingJava.2)Object-orientedprogrammingpromotesmodulara

    Top Java Features: A Comprehensive Guide for DevelopersTop Java Features: A Comprehensive Guide for DevelopersMay 13, 2025 am 12:04 AM

    The top Java functions include: 1) object-oriented programming, supporting polymorphism, improving code flexibility and maintainability; 2) exception handling mechanism, improving code robustness through try-catch-finally blocks; 3) garbage collection, simplifying memory management; 4) generics, enhancing type safety; 5) ambda expressions and functional programming to make the code more concise and expressive; 6) rich standard libraries, providing optimized data structures and algorithms.

    Is Java Truly Platform Independent? How 'Write Once, Run Anywhere' WorksIs Java Truly Platform Independent? How 'Write Once, Run Anywhere' WorksMay 13, 2025 am 12:03 AM

    JavaisnotentirelyplatformindependentduetoJVMvariationsandnativecodeintegration,butitlargelyupholdsitsWORApromise.1)JavacompilestobytecoderunbytheJVM,allowingcross-platformexecution.2)However,eachplatformrequiresaspecificJVM,anddifferencesinJVMimpleme

    Demystifying the JVM: Your Key to Understanding Java ExecutionDemystifying the JVM: Your Key to Understanding Java ExecutionMay 13, 2025 am 12:02 AM

    TheJavaVirtualMachine(JVM)isanabstractcomputingmachinecrucialforJavaexecutionasitrunsJavabytecode,enablingthe"writeonce,runanywhere"capability.TheJVM'skeycomponentsinclude:1)ClassLoader,whichloads,links,andinitializesclasses;2)RuntimeDataAr

    Is java still a good language based on new features?Is java still a good language based on new features?May 12, 2025 am 12:12 AM

    Javaremainsagoodlanguageduetoitscontinuousevolutionandrobustecosystem.1)Lambdaexpressionsenhancecodereadabilityandenablefunctionalprogramming.2)Streamsallowforefficientdataprocessing,particularlywithlargedatasets.3)ThemodularsystemintroducedinJava9im

    What Makes Java Great? Key Features and BenefitsWhat Makes Java Great? Key Features and BenefitsMay 12, 2025 am 12:11 AM

    Javaisgreatduetoitsplatformindependence,robustOOPsupport,extensivelibraries,andstrongcommunity.1)PlatformindependenceviaJVMallowscodetorunonvariousplatforms.2)OOPfeatureslikeencapsulation,inheritance,andpolymorphismenablemodularandscalablecode.3)Rich

    Top 5 Java Features: Examples and ExplanationsTop 5 Java Features: Examples and ExplanationsMay 12, 2025 am 12:09 AM

    The five major features of Java are polymorphism, Lambda expressions, StreamsAPI, generics and exception handling. 1. Polymorphism allows objects of different classes to be used as objects of common base classes. 2. Lambda expressions make the code more concise, especially suitable for handling collections and streams. 3.StreamsAPI efficiently processes large data sets and supports declarative operations. 4. Generics provide type safety and reusability, and type errors are caught during compilation. 5. Exception handling helps handle errors elegantly and write reliable software.

    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

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Article

    Hot Tools

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    EditPlus Chinese cracked version

    EditPlus Chinese cracked version

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

    MinGW - Minimalist GNU for Windows

    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.

    SecLists

    SecLists

    SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.