Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use reflective API to manipulate information in java

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "how to use reflective API to manipulate information in java". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to use reflective API to manipulate information in java.

1. Getting the class object you want to operate is the core of reflection, and we can call the methods of the class arbitrarily through the class object.

2. Calling the method of the class class is the use phase of reflection.

3. Use reflection API to manipulate this information.

Example

Class Worker {/ * two public construction methods * / public Worker () {count++;} public Worker (String name) {super (); this.name = name;} / * two private construction methods * / private Worker (String name,int age) {super (); this.name = name;this.age = age;} private Worker (int age) {super (); this.age = age;} / * two private attributes * / private String name;private int age;/* one public attribute * / public String parents / * one private static attribute * / private static int count;/* one public static attribute * / public static String address;/* two public methods * / public String getName () {return name;} public void setName (String name) {this.name = name;} / * two private methods * / private int getAge () {return age;} private void setAge (int age) {this.age = age;} / * two public static methods * / public static void printAddress (String address) {System.out.println ("printAddress===" + address) } public static void printAddress () {System.out.println ("printAddress===default");} / * two private static methods * / private static void printlnCount (int count) {System.out.println ("printCount===" + count);} private static void printlnCount () {System.out.println ("printCount===000");} @ Overridepublic String toString () {return "this is a Worker instance: name=" + name+ ", age=" + age }} at this point, I believe you have a deeper understanding of "how to use reflective API to manipulate information in java". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report