Java反射07 : 构造器Constructor学习示例

超级通道: Java泛型学习系列-绪论

java.lang.reflect.Constructor类提供了用于获取和操作构造器的静态方法。

1.通过Constructor可以做什么

通过Constructor可以做以下事情:

  • 如何通过Class对象获取Constructor?如何通过Constructor对象获取Class?
  • 如何通过Constructor获取构造器的相关信息如:造器方法名、修饰符、参数个数、参数类型、参数化类型、异常类、可变参数、访问权限、注解?
  • 如何通过构造器Constructor进行对象实例化?

2.代码实例

实体类:

/**
 * <p>用户表</p>
 *
 * @author hanchao 2018/2/14 22:30
 */
@MyAnnotationA
@MyAnnotationB
public class User extends SuperUser implements InterfaceAAA,InterfaceBBB {
    @MyAnnotationA
    @MyAnnotationB
    public String username = "张三";
    private int password = 123456;

    public User() {
    }

    @MyAnnotationA
    @MyAnnotationB
    public User(@MyAnnotationA @MyAnnotationB String username,@MyAnnotationA int password) throws NullPointerException, ArrayStoreException {
        this.username = username;
        this.password = password;
    }
    //setter getter toString...
}

实例类:

/**
 * java.lang.reflect.Constructor示例
 * Created by 韩超 on 2018/3/1.
 */
public class ReflectConstructorDemo {
    private final static Logger LOGGER = Logger.getLogger(ReflectConstructorDemo.class);

    /**
     * <p>Title: java反射-构造器Constructor示例</p>
     *
     * @author 韩超 2018/3/1 11:48
     */
    public static void main(String[] args) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
        //首先获取Class对象
        Class userClass = User.class;
        //========================================= Class对象与Constructor对象相互获取 =============================
        LOGGER.info("========================================= Class对象与Constructor对象相互获取 =============================");
        //通过class.getConstructor()和class.getDeclaredConstructor获取默认构造函数
        Constructor defaultConstructor = userClass.getConstructor();
        Constructor defaultConstructor1 = userClass.getDeclaredConstructor();
        LOGGER.info("通过class.getConstructor()获取默认构造函数:" + defaultConstructor);
        LOGGER.info("通过class.getDeclaredConstructor()获取默认构造函数:" + defaultConstructor1 + "\n");

        //通过class.getConstructor(args...)和class.getDeclaredConstructor(args...)获取带参数的构造器
        Constructor paramConstructor = userClass.getConstructor(String.class, int.class);
        Constructor paramConstructor1 = userClass.getDeclaredConstructor(String.class, int.class);
        LOGGER.info("通过class.getConstructor(args...)获取带参数的构造器:" + paramConstructor);
        LOGGER.info("通过class.getDeclaredConstructor(args...)获取带参数的构造器:" + paramConstructor1 + "\n");

        //通过class.getConstructors()和class.getDeclaredConstructors获取所有构造器
        Constructor[] constructors = userClass.getConstructors();
        Constructor[] constructors1 = userClass.getDeclaredConstructors();
        for (Constructor constructor : constructors) {
            LOGGER.info("通过class.getConstructors()获取所有构造器:" + constructor);
        }
        for (Constructor constructor : constructors1) {
            LOGGER.info("通过class.getDeclaredConstructors()获取所有构造器:" + constructor);
        }
        System.out.println("");

        //通过constructor.getDeclaringClass()获取构造器所属的类
        Class userClass1 = defaultConstructor.getDeclaringClass();
        LOGGER.info("通过constructor.getDeclaringClass()获取构造器所属的类:" + userClass1 + "\n");

        //========================================= Constructor信息获取 =============================
        LOGGER.info("========================================= Constructor信息获取 =============================");
        //通过constructor.getName()获取构造器方法名
        LOGGER.info("通过constructor.getName()获取构造器方法名:" + defaultConstructor.getName() + "\n");

        //通过constructor.toGenericString()获取构造器的字符串描述(通用类型)
        LOGGER.info("通过constructor.toGenericString()获取构造器的字符串描述(通用类型):" + defaultConstructor.toGenericString() + "\n");
        //通过constructor.toString()获取构造器的字符串描述
        LOGGER.info("通过constructor.toString()获取构造器的字符串描述:" + defaultConstructor.toString() + "\n");

        //通过constructor.getModifiers()获取构造器的修饰符
        LOGGER.info("通过constructor.getModifiers()获取构造器的修饰符:" + Modifier.toString(defaultConstructor.getModifiers()) + "\n");

        //通过constructor.getParameterCount()获取参数个数
        LOGGER.info("通过constructor.getParameterCount()获取参数个数-defaultConstructor:" + defaultConstructor.getParameterCount());
        LOGGER.info("通过constructor.getParameterCount()获取参数个数-paramConstructor:" + paramConstructor.getParameterCount() + "\n");
        //通过constructor.getParameterTypes()获取参数类数组(Class)
        Class[] paramClasses = paramConstructor.getParameterTypes();
        for (Class paramClass : paramClasses) {
            LOGGER.info("通过constructor.getParameterTypes()获取参数类数组(Class):" + paramClass);
        }
        //通过constructor.getParameterTypes()获取参数类型数组(Type)
        Type[] paramTypes = paramConstructor.getGenericParameterTypes();
        for (Type paramType : paramTypes) {
            LOGGER.info("通过constructor.getGenericParameterTypes()获取参数类型数组(Type):" + paramType);
        }
        System.out.println("");
        //通过constructor.getParameters()获取构造器的参数(Parameter)数组
        Parameter[] parameters = paramConstructor.getParameters();
        for (Parameter parameter : parameters) {
            LOGGER.info("通过constructor.getParameters()获取构造器的参数数组:" + parameter);
        }
        System.out.println("");
        //通过constructor.getTypeParameters()获取参数化类型(泛型)
        TypeVariable[] typeVariables = paramConstructor.getTypeParameters();
        LOGGER.info("通过constructor.getTypeParameters()获取参数化类型(泛型)-paramConstructor参数化类型个数:" + typeVariables.length + "\n");

        //通过constructor.getExceptionTypes()获取异常类(Class)
        Class[] exceptionClasses = paramConstructor.getExceptionTypes();
        for (Class exceptionClass : exceptionClasses) {
            LOGGER.info("通过const.getExceptionTypes()获取异常类(Class):" + exceptionClass);
        }
        //通过constructor.getGenericExceptionTypes()获取异常类(Type)
        Class[] exceptionTypes = (Class[]) paramConstructor.getGenericExceptionTypes();
        for (Class exceptionType : exceptionTypes) {
            LOGGER.info("通过const.getGenericExceptionTypes()获取异常类(Type):" + exceptionType);
        }
        System.out.println("");

        //通过equals比较两个构造器是否相同
        LOGGER.info("通过equals比较两个构造器是否相同:" + defaultConstructor.equals(paramConstructor));
        //通过constructor.isSynthetic()判断构造器是否是合成方法
        LOGGER.info("通过constructor.isSynthetic()判断构造器是否是合成方法:" + defaultConstructor.isSynthetic());
        //通过constructor.isVarArgs()判断构造器是否有可变参数
        LOGGER.info("通过constructor.isVarArgs()判断构造器是否有可变参数:" + defaultConstructor.isVarArgs());
        //通过constructor.isAccessible()判断构造器是否可以访问
        LOGGER.info("通过constructor.isAccessible()判断构造器是否可以访问:" + defaultConstructor.isAccessible() + "\n");

        //========================================= Constructor注解信息 =============================
        LOGGER.info("========================================= Constructor注解信息 =============================");
        //通过constructor.getAnnotatedParameterTypes()获取注解的参数类型(组合类型)
        AnnotatedType[] annotatedTypes = paramConstructor.getAnnotatedParameterTypes();
        for (AnnotatedType annotatedType : annotatedTypes) {
            LOGGER.info("通过constructor.getAnnotatedParameterTypes()获取注解的参数类型(组合类型)- 参数类型:" + annotatedType.getType());
        }
        System.out.println("");

        //通过constructor.getAnnotation(Annotation.class)和constructor.getDeclaredAnnotation(Annotation.class)获取指定的一个注解Class
        LOGGER.info("通过constructor.getAnnotation(Annotation.class)获取指定的注解Class:" + paramConstructor.getAnnotation(MyAnnotationA.class));
        LOGGER.info("通过constructor.getDeclaredAnnotation(Annotation.class)获取指定的注解Class:" + paramConstructor.getDeclaredAnnotation(MyAnnotationB.class) + "\n");

        //通过constructor.getAnnotationsByType(annotation.cass)和constructor.getDeclaredAnnotationsByType(annotation.cass)获取指定的一类注解Class
        Annotation[] oneTypeAnnotations = paramConstructor.getAnnotationsByType(MyAnnotationB.class);
        for (Annotation annotation : oneTypeAnnotations) {
            LOGGER.info("通过constructor.getAnnotationsByType(annotation.cass)获取指定的一类注解Class:" + annotation);
        }
        Annotation[] oneTypeAnnotations1 = paramConstructor.getDeclaredAnnotationsByType(MyAnnotationB.class);
        for (Annotation annotation : oneTypeAnnotations1) {
            LOGGER.info("通过constructor.getDeclaredAnnotationsByType(annotation.cass)获取指定的一类注解Class:" + annotation);
        }
        System.out.println("");

        //通过constructor.getAnnotations()和constructor.getDeclaredAnnotations()获取全部注解类
        Annotation[] annotations = paramConstructor.getAnnotations();
        for (Annotation annotation : annotations) {
            LOGGER.info("通过constructor.getAnnotations()获取全部的注解类:" + annotation);
        }
        Annotation[] annotations1 = paramConstructor.getDeclaredAnnotations();
        for (Annotation annotation : annotations1) {
            LOGGER.info("通过constructor.getDeclaredAnnotations()获取全部的注解类:" + annotation);
        }
        System.out.println("");

        //通过constructor.getParameterAnnotations获取参数和注解的二维矩阵
        Annotation[][] parameterAnnotations = paramConstructor.getParameterAnnotations();
        for (int i = 0; i < parameterAnnotations.length; i++) {
            //第一个维度标识的是第i个参数的所有注解
            for (int j = 0; j < parameterAnnotations[i].length; j++) {
                //第二个维度标识的是第i个参数的第j个注解
                LOGGER.info("第" + (i + 1) + "个参数的第" + (j + 1) + "个注解:" + parameterAnnotations[i][j]);
            }
        }
        System.out.println("");

        //========================================= Constructor创建对象实例 =============================
        LOGGER.info("========================================= Constructor创建对象实例 =============================");
        //通过new创建实例化对象
        User user = new User();
        LOGGER.info("通过new创建实例化对象" + user.toString());

        //通过constructor.newInstance()以默认构造器进行对象实例化
        User user1 = (User) defaultConstructor.newInstance();
        LOGGER.info("通过constructor.newInstance()以默认构造器进行对象实例化" + user1.toString());
        //通过constructor.newInstance(args...)以指定构造器进行对象实例化
        User user2 = (User) paramConstructor.newInstance("王文武", 19191);
        LOGGER.info("通过constructor.newInstance(args...)以指定构造器进行对象实例化:" + user2.toString());
    }
}

3.运行结果

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:27 - ========================================= Class对象与Constructor对象相互获取 =============================
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:31 - 通过class.getConstructor()获取默认构造函数:public pers.hanchao.reflect.common.User()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:32 - 通过class.getDeclaredConstructor()获取默认构造函数:public pers.hanchao.reflect.common.User()

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:37 - 通过class.getConstructor(args...)获取带参数的构造器:public pers.hanchao.reflect.common.User(java.lang.String,int) throws java.lang.NullPointerException,java.lang.ArrayStoreException
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:38 - 通过class.getDeclaredConstructor(args...)获取带参数的构造器:public pers.hanchao.reflect.common.User(java.lang.String,int) throws java.lang.NullPointerException,java.lang.ArrayStoreException

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:44 - 通过class.getConstructors()获取所有构造器:public pers.hanchao.reflect.common.User()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:44 - 通过class.getConstructors()获取所有构造器:public pers.hanchao.reflect.common.User(java.lang.String,int) throws java.lang.NullPointerException,java.lang.ArrayStoreException
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:47 - 通过class.getDeclaredConstructors()获取所有构造器:public pers.hanchao.reflect.common.User()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:47 - 通过class.getDeclaredConstructors()获取所有构造器:public pers.hanchao.reflect.common.User(java.lang.String,int) throws java.lang.NullPointerException,java.lang.ArrayStoreException

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:53 - 通过constructor.getDeclaringClass()获取构造器所属的类:class pers.hanchao.reflect.common.User

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:56 - ========================================= Constructor信息获取 =============================
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:58 - 通过constructor.getName()获取构造器方法名:pers.hanchao.reflect.common.User

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:61 - 通过constructor.toGenericString()获取构造器的字符串描述(通用类型):public pers.hanchao.reflect.common.User()

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:63 - 通过constructor.toString()获取构造器的字符串描述:public pers.hanchao.reflect.common.User()

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:66 - 通过constructor.getModifiers()获取构造器的修饰符:public

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:69 - 通过constructor.getParameterCount()获取参数个数-defaultConstructor:0
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:70 - 通过constructor.getParameterCount()获取参数个数-paramConstructor:2

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:74 - 通过constructor.getParameterTypes()获取参数类数组(Class):class java.lang.String
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:74 - 通过constructor.getParameterTypes()获取参数类数组(Class):int
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:79 - 通过constructor.getGenericParameterTypes()获取参数类型数组(Type):class java.lang.String
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:79 - 通过constructor.getGenericParameterTypes()获取参数类型数组(Type):int

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:85 - 通过constructor.getParameters()获取构造器的参数数组:java.lang.String arg0
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:85 - 通过constructor.getParameters()获取构造器的参数数组:int arg1

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:90 - 通过constructor.getTypeParameters()获取参数化类型(泛型)-paramConstructor参数化类型个数:0

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:95 - 通过const.getExceptionTypes()获取异常类(Class):class java.lang.NullPointerException
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:95 - 通过const.getExceptionTypes()获取异常类(Class):class java.lang.ArrayStoreException
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:100 - 通过const.getGenericExceptionTypes()获取异常类(Type):class java.lang.NullPointerException
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:100 - 通过const.getGenericExceptionTypes()获取异常类(Type):class java.lang.ArrayStoreException

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:105 - 通过equals比较两个构造器是否相同:false
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:107 - 通过constructor.isSynthetic()判断构造器是否是合成方法:false
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:109 - 通过constructor.isVarArgs()判断构造器是否有可变参数:false
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:111 - 通过constructor.isAccessible()判断构造器是否可以访问:false

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:114 - ========================================= Constructor注解信息 =============================
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:118 - 通过constructor.getAnnotatedParameterTypes()获取注解的参数类型(组合类型)- 参数类型:class java.lang.String
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:118 - 通过constructor.getAnnotatedParameterTypes()获取注解的参数类型(组合类型)- 参数类型:int

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:123 - 通过constructor.getAnnotation(Annotation.class)获取指定的注解Class:@pers.hanchao.reflect.common.MyAnnotationA()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:124 - 通过constructor.getDeclaredAnnotation(Annotation.class)获取指定的注解Class:@pers.hanchao.reflect.common.MyAnnotationB()

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:129 - 通过constructor.getAnnotationsByType(annotation.cass)获取指定的一类注解Class:@pers.hanchao.reflect.common.MyAnnotationB()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:133 - 通过constructor.getDeclaredAnnotationsByType(annotation.cass)获取指定的一类注解Class:@pers.hanchao.reflect.common.MyAnnotationB()

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:140 - 通过constructor.getAnnotations()获取全部的注解类:@pers.hanchao.reflect.common.MyAnnotationA()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:140 - 通过constructor.getAnnotations()获取全部的注解类:@pers.hanchao.reflect.common.MyAnnotationB()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:144 - 通过constructor.getDeclaredAnnotations()获取全部的注解类:@pers.hanchao.reflect.common.MyAnnotationA()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:144 - 通过constructor.getDeclaredAnnotations()获取全部的注解类:@pers.hanchao.reflect.common.MyAnnotationB()

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:154 - 第1个参数的第1个注解:@pers.hanchao.reflect.common.MyAnnotationA()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:154 - 第1个参数的第2个注解:@pers.hanchao.reflect.common.MyAnnotationB()
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:154 - 第2个参数的第1个注解:@pers.hanchao.reflect.common.MyAnnotationA()

2018-03-04 13:16:17 INFO  ReflectConstructorDemo:160 - ========================================= Constructor创建对象实例 =============================
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:163 - 通过new创建实例化对象User{username='张三', password='123456'}
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:167 - 通过constructor.newInstance()以默认构造器进行对象实例化User{username='张三', password='123456'}
2018-03-04 13:16:17 INFO  ReflectConstructorDemo:170 - 通过constructor.newInstance(args...)以指定构造器进行对象实例化:User{username='王文武', password='19191'}

4.总结

根据代码实例和运行结果,总结如下:

  • Class对象与Constructor对象相互获取
    1. 通过class.getConstructor()和class.getDeclaredConstructor获取默认构造函数
    2. 通过class.getConstructor(args…)和class.getDeclaredConstructor(args…)获取带参数的构造器
    3. 通过class.getConstructors()和class.getDeclaredConstructors获取所有构造器
    4. 通过constructor.getDeclaringClass()获取构造器所属的类
  • Constructor信息获取
    1. 通过constructor.getName()获取构造器方法名
    2. 通过constructor.toGenericString()和constructor.toString()获取构造器的字符串描述
    3. 通过constructor.getModifiers()获取构造器的修饰符
    4. 通过constructor.getParameterCount()获取参数个数
    5. 通过constructor.getParameterTypes()获取参数类数组(Class)
    6. 通过constructor.getGenericParameterTypes()获取参数类型数组(Type)
    7. 通过constructor.getParameters()获取构造器的参数对象(Parameter[])数组
    8. 通过constructor.getTypeParameters()获取参数化类型(泛型)
    9. 通过constructor.getExceptionTypes()获取异常类(Class)
    10. 通过constructor.getGenericExceptionTypes()获取异常类(Type)
    11. 通过equals比较两个构造器是否相同
    12. 通过constructor.isSynthetic()判断构造器是否是合成方法
    13. 通过constructor.isVarArgs()判断构造器是否有可变参数
    14. 通过constructor.isAccessible()判断构造器是否可以访问
    15. 通过constructor.getAnnotatedParameterTypes()获取注解的参数类型(组合类型)
    16. 通过constructor.getAnnotation(Annotation.class)和constructor.getDeclaredAnnotation(Annotation.class)获取指定的一个注解Class
    17. 通过constructor.getAnnotationsByType(annotation.cass)和constructor.getDeclaredAnnotationsByType(annotation.cass)获取指定的一组注解Class
    18. 通过constructor.getAnnotations()和constructor.getDeclaredAnnotations()获取全部注解类
    19. 通过constructor.getParameterAnnotations获取参数和注解的二维矩阵
  • 通过构造器Constructor进行对象实例化
    1. 通过constructor.newInstance()以默认构造器进行对象实例化
    2. 通过constructor.newInstance(args…)以指定构造器进行对象实例化

备注:

  • 2
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值