欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java之通过Class类获取类信息

程序员文章站 2022-06-05 08:05:03
...

1、获取类信息

Class<People> peopleClass = People.class;

2、获取公共的方法,包括继承的公有方法

 Method[] methods = peopleClass.getMethods();

3、 找到方法 目的是调用它

methods[i].invoke(people)

 4、访问私有方法

 peopleClass.getDeclaredMethods();

 5、设置私有方法可以被访问 (除去访问修饰符的检查)

 declaredMethods[i].setAccessible(true);

代码示例:

    @Test
    public void test5(){

        People people = new People("张三",18,"男");

        //获取类信息
        Class<People> peopleClass = People.class;
    /*    //获取类的包名
        Package apackage = peopleClass.getPackage();
        System.out.println("类的包名:" + apackage);*/
        //获取公共的方法,包括继承的公有方法
        Method[] methods = peopleClass.getMethods();
        for (int i = 0; i < methods.length; i++) {
           /* //输出所有共有方法
            //   System.out.println(methods[i]);*/
            //找到方法 目的是调用它
            if(methods[i].getName().equals("toString")){
                try {
                    String s = (String)methods[i].invoke(people);
                    System.out.println(s);
                } catch (IllegalAccessException | InvocationTargetException e) {
                    e.printStackTrace();
                }
            }
        }
        System.out.println("---------------------");
        //访问私有方法
        Method[] declaredMethods = peopleClass.getDeclaredMethods();
        for (int i = 0; i < declaredMethods.length; i++) {
            System.out.println(declaredMethods[i]);
            //调用
            if(declaredMethods[i].getName().equals("set")){
                //设置私有方法可以被访问 (除去访问修饰符的检查)
                declaredMethods[i].setAccessible(true);
                try {
                    declaredMethods[i].invoke(people);
                } catch (IllegalAccessException e) {
                    e.printStackTrace();
                } catch (InvocationTargetException e) {
                    e.printStackTrace();
                }
            }
        }
    }