In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article introduces the relevant knowledge of "what is the process of using java reflection". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
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;}} "what is the use of java reflection?" Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.