java反射:类对象的简单使用

定义一个简单的Person类,其中含有id、name、gender等基本信息,对这些属性进行get/set/tostring方法之后,进行主要测试编写:

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;


public class Test2 {
    public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
        //先将clazzPerson类对象搞到手
        Class<?> clazzPerson = Class.forName("Person");

        //getConstructors:获得所有公共类对象方法
        Constructor<?>[] cs = clazzPerson.getConstructors();
        //然后遍历它们
        for(Constructor<?> c1:cs){
            System.out.println("Constructor:" + c1);
        }
        System.out.println("_____________");
        //获得所有包含接受了private属性的方法(也就是不管你是个什么东西都要把你给搞过来)
        Constructor<?>[] cs2 = clazzPerson.getDeclaredConstructors();
        for (Constructor<?> c2 : cs2){
            System.out.println("Constructor:" + c2);
        }
        System.out.println("__________");
        //通过  参数形式  搞到特定的某个构造方法
        Constructor<?> c3 = clazzPerson.getDeclaredConstructor(int.class,String.class,String.class);
        System.out.println(c3);

        /**
         * 使用newInstance来创建类对新实体
         * 搞到手了的具体使用
         */
        Object o = c3.newInstance(1,"yuer","???");
        Person p =(Person) o;
        System.out.println(p);
    }
}
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;


public class Test2 {
    public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, InstantiationException {
        //先将clazzPerson类对象搞到手
        Class<?> clazzPerson = Class.forName("Person");

        //getConstructors:获得所有公共类对象方法
        Constructor<?>[] cs = clazzPerson.getConstructors();
        //然后遍历它们
        for(Constructor<?> c1:cs){
            System.out.println("Constructor:" + c1);
        }
        System.out.println("_____________");
        //获得所有包含接受了private属性的方法(也就是不管你是个什么东西都要把你给搞过来)
        Constructor<?>[] cs2 = clazzPerson.getDeclaredConstructors();
        for (Constructor<?> c2 : cs2){
            System.out.println("Constructor:" + c2);
        }
        System.out.println("__________");
        //通过  参数形式  搞到特定的某个构造方法
        Constructor<?> c3 = clazzPerson.getDeclaredConstructor(int.class,String.class,String.class);
        System.out.println(c3);

        /**
         * 使用newInstance来创建类对新实体
         * 搞到手了的具体使用
         */
        Object o = c3.newInstance(1,"yuer","???");
        Person p =(Person) o;
        System.out.println(p);
    }
}

 

posted @ 2019-07-08 15:26  织式  阅读(279)  评论(0编辑  收藏  举报