其他分享
首页 > 其他分享> > 2022.4.20 通过反射获取运行时类的完整结构

2022.4.20 通过反射获取运行时类的完整结构

作者:互联网

创建运行时类的对象

获取运行时类的完整结构

 package com.xing.reflection;
 ​
 public class test01 {
     public static void main(String[] args) throws ClassNotFoundException {
         //alt + 回车 抛出异常   补全代码
         //通过反射获取类的class对象,传入一个字符串 包名类名 还需抛出一个异常 类可能找不到
         Class c1 = Class.forName("com.xing.reflection.User");
         System.out.println(c1);//class com.xing.reflection.User
 ​
         Class c2 = Class.forName("com.xing.reflection.User");
         Class c3 = Class.forName("com.xing.reflection.User");
         Class c4 = Class.forName("com.xing.reflection.User");
 ​
         //一个类在内存中只有一个class对象
         //一个类被加载后,类的整个结构都会被封装在classs对象中。
         System.out.println(c2.hashCode());
         System.out.println(c3.hashCode());
         System.out.println(c4.hashCode());
 ​
 ​
    }
 ​
 }
 //实体类 pojo entity
 class User{
     private String name;
     private int id;
     private int age;
 ​
     public User() {//无参构造
    }
 ​
     public User(String name, int id, int age) {//有参构造
         this.name = name;
         this.id = id;
         this.age = age;
    }
 ​
     public String getName() {
         return name;
    }
 ​
     public void setName(String name) {
         this.name = name;
    }
 ​
     public int getId() {
         return id;
    }
 ​
     public void setId(int id) {
         this.id = id;
    }
 ​
     public int getAge() {
         return age;
    }
 ​
     public void setAge(int age) {
         this.age = age;
    }
 ​
     @Override
     public String toString() {
         return "User{" +
                 "name='" + name + '\'' +
                 ", id=" + id +
                 ", age=" + age +
                 '}';
    }
 }

 

通过反射获取运行时类的完整结构

Field、Method、Constructor、Superclass、Interface、Annotation

在工作中,经常需要对特定对象转换成我想要的JSON对象,为了实现通用性想到用反射去实现这个过程。java反射中可用的方法有很多,如Class (反射的入口)、Method (成员方法)、Field (成员变量),而我想要实现的功能使用Field即可实现。

Field

用法 Field是什么 Field是一个类,位于java.lang.reflect包下。在Java反射中Field类描述的是类的属性信息,功能包括:

如何使用Field 如何获取Field类对象 一共有4种方法:

Field 类对象常用方法

Method
Constructor
 package com.xing.reflection;
 ​
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Field;
 import java.lang.reflect.Method;
 ​
 public class Test07 {
     public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException, NoSuchMethodException {
         //需抛出异常 ClassNotFoundException
         Class c1 = Class.forName("com.xing.reflection.User");
 ​
         //获得类的名字
         System.out.println(c1.getName());//com.xing.reflection.User   包名+类名
 ​
         //获得类的简单名字
         System.out.println(c1.getSimpleName());//User   类名
 ​
         //获得类的属性
         Field[] fields = c1.getFields();  //只能找到public属性 由于User类中没有public,所以不打印
         for (Field field : fields) {
             System.out.println(field);
        }
 ​
         fields = c1.getDeclaredFields();//找到所有属性
         //打印数组 fields
         for (Field field : fields) {
             System.out.println(field);
        }
         /*
         private java.lang.String com.xing.reflection.User.name
         private int com.xing.reflection.User.id
         private int com.xing.reflection.User.age
          */
 ​
         //获得指定属性 返回一个Field类型的对象   需抛出异常 NoSuchFieldException
         Field name = c1.getDeclaredField("name");//找到指定属性
         System.out.println(name);//private java.lang.String com.xing.reflection.User.name
 ​
         //获得类的方法
         Method[] methods = c1.getMethods();//获得本类及其父类的全部public方法
         for (Method method : methods) {
             System.out.println(method);
        }
 ​
         Method[] declaredMethods = c1.getDeclaredMethods();//获得本类的所有方法包括私有方法
         for (Method declaredMethod : declaredMethods) {
             System.out.println(declaredMethod);
        }
 ​
         //获得指定方法 需抛出异常NoSuchMethodException   方法名   方法参数的类对象
         Method method = c1.getMethod("getName",null);
         System.out.println(method);//public java.lang.String com.xing.reflection.User.getName()
 ​
 ​
         Method setName = c1.getMethod("setName", String.class);
         System.out.println(setName);//public void com.xing.reflection.User.setName(java.lang.String)
 ​
         //获得类的构造器
         Constructor[] constructors = c1.getConstructors();//获得public所有的构造器
         for (Constructor constructor : constructors) {
             System.out.println(constructor);
        }
 ​
         Constructor[] declaredConstructors = c1.getDeclaredConstructors();//获得所有的构造器
 ​
         //获得指定构造器             抛出异常NoSuchMethodException   构造器中所有参数的类对象
         Constructor declaredConstructor = c1.getDeclaredConstructor(String.class, int.class, int.class);
         System.out.println(declaredConstructor);
    }
 }
 ​

反射操作泛型

反射操作注解

 

 

 package com.xing.reflection;
 ​
 import java.lang.annotation.*;
 import java.lang.reflect.Field;
 ​
 public class Test09 {
     public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException {
         Class c1 = Class.forName("com.xing.reflection.Student2");
 ​
         //通过反射获得注解
         Annotation[] annotations = c1.getAnnotations();
         for (Annotation annotation : annotations) {
             System.out.println(annotation);//外边类上的注解 @com.xing.reflection.Tablexing(value=db_student)
        }
 ​
         //返回一个Annotation类型的对象, 需要强转 获得注解value的值   参数为注解的类对象
         Tablexing tablexing = (Tablexing)c1.getAnnotation(Tablexing.class);
         String value = tablexing.value();
         System.out.println(value);//db_student
 ​
         //获得类指定注解   先获取指定属性 再获取其上的注解
         Field f = c1.getDeclaredField("name");
         Fieldxing annotation = f.getAnnotation(Fieldxing.class);
         System.out.println(annotation.columnName());//db_name
         System.out.println(annotation.type());//varchar
         System.out.println(annotation.length());//3
    }
 }
 @Tablexing("db_student")
 class Student2{
     @Fieldxing(columnName = "db_id",type = "int",length = 10)
     private int id;
     @Fieldxing(columnName = "db_age",type = "int",length = 10)
     private int age;
     @Fieldxing(columnName = "db_name",type = "varchar",length = 3)
     private String name;
 ​
     public Student2() {
    }
 ​
     public Student2(int id, int age, String name) {
         this.id = id;
         this.age = age;
         this.name = name;
    }
 ​
     public int getId() {
         return id;
    }
 ​
     public void setId(int id) {
         this.id = id;
    }
 ​
     public int getAge() {
         return age;
    }
 ​
     public void setAge(int age) {
         this.age = age;
    }
 ​
     public String getName() {
         return name;
    }
 ​
     public void setName(String name) {
         this.name = name;
    }
 ​
     @Override
     public String toString() {
         return "Student2{" +
                 "id=" + id +
                 ", age=" + age +
                 ", name='" + name + '\'' +
                 '}';
    }
 }
 ​
 //类型的注解
 @Target(ElementType.TYPE)   //作用域
 @Retention(RetentionPolicy.RUNTIME)
 @interface Tablexing{
     String value();
 }
 ​
 //属性的注解
 @Target(ElementType.FIELD)
 @Retention(RetentionPolicy.RUNTIME)
 @interface Fieldxing{
     String columnName();
     String type();
     int length();
 }
 
 

标签:20,name,int,id,Field,2022.4,时类,public,String
来源: https://www.cnblogs.com/shanzha/p/16172488.html