• java反射


    1、getXXX 和 getDeclaredXXX

    java 里 Class<?> 有下面这些方法:

    类似的方法有:

    2、getMethod(s) 和 getDeclaredMethod(s)

    getDeclaredMethods只获取当前对象申明的方法,不包含继承过来的方法

    * Returns an array containing {@code Method} objects reflecting all the
    * declared methods of the class or interface represented by this {@code
    * Class} object, including public, protected, default (package)
    * access, and private methods, but excluding inherited methods.

    getMethods获取public方法

    * Returns an array containing {@code Method} objects reflecting all the
    * public methods of the class or interface represented by this {@code
    * Class} object, including those declared by the class or interface and
    * those inherited from superclasses and superinterfaces.

    以常用的getMethod和getDeclaredMethod为例:

    public class DemoService {
        public String showDemoPublic(String methodName) {
            return "show demo " + methodName;
        }
    
        protected String showDemoProtected(String methodName) {
            return "show demo " + methodName;
        }
    
        private String showDemoPrivate(String methodName) {
            return "show demo " + methodName;
        }
    }

    getMethods与getDeclaredMethods:

    System.out.println("========================getMethods=========================");
    Method[] methods_1 = demoService.getClass().getMethods();
    for (Method m : methods_1) {
        System.out.println(m);
    }
    
    System.out.println("========================getDeclaredMethods=========================");
    Method[] methods_2 = demoService.getClass().getDeclaredMethods();
    for (Method m : methods_2) {
        System.out.println(m);
    }

    ========================getMethods=========================
    public java.lang.String com.logback.demo.service.DemoService.showDemoPublic(java.lang.String)
    public final void java.lang.Object.wait() throws java.lang.InterruptedException
    public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException
    public final native void java.lang.Object.wait(long) throws java.lang.InterruptedException
    public boolean java.lang.Object.equals(java.lang.Object)
    public java.lang.String java.lang.Object.toString()
    public native int java.lang.Object.hashCode()
    public final native java.lang.Class java.lang.Object.getClass()
    public final native void java.lang.Object.notify()
    public final native void java.lang.Object.notifyAll()
    ========================getDeclaredMethods=========================
    public java.lang.String com.logback.demo.service.DemoService.showDemoPublic(java.lang.String)
    private java.lang.String com.logback.demo.service.DemoService.showDemoPrivate(java.lang.String)
    protected java.lang.String com.logback.demo.service.DemoService.showDemoProtected(java.lang.String)

    getMethod与getDeclaredMethod

    public void getMethodByName(@RequestParam("method") String method) throws NoSuchMethodException {try {
           System.out.println("========================getMethod=========================");
           Method method1 = demoService.getClass().getMethod("showDemo" + method, String.class);
           System.out.println(method1);
        } catch (Exception ex) {
           System.out.println(ex);
        }
        try {
          System.out.println("========================getDeclaredMethod=========================");
          Method method2 = demoService.getClass().getDeclaredMethod("showDemo" + method, String.class);
          System.out.println(method2);
        } catch (Exception ex) {
          System.out.println(ex);
        }
    }

    http://localhost:8088/getMethod?method=Public

    ========================getMethod=========================
    public java.lang.String com.logback.demo.service.DemoService.showDemoPublic(java.lang.String)
    ========================getDeclaredMethod=========================
    public java.lang.String com.logback.demo.service.DemoService.showDemoPublic(java.lang.String)

    http://localhost:8088/getMethod?method=Protected

    ========================getMethod=========================
    java.lang.NoSuchMethodException: com.logback.demo.service.DemoService.showDemoProtected(java.lang.String)
    ========================getDeclaredMethod=========================
    protected java.lang.String com.logback.demo.service.DemoService.showDemoProtected(java.lang.String)

    http://localhost:8088/getMethod?method=Private

    ========================getMethod=========================
    java.lang.NoSuchMethodException: com.logback.demo.service.DemoService.showDemoPrivate(java.lang.String)
    ========================getDeclaredMethod=========================
    private java.lang.String com.logback.demo.service.DemoService.showDemoPrivate(java.lang.String)

    2、getField(s) 和 getDeclaredField(s)

    public class Demo {
      private Integer id;
      private String name;
      public String desc; } public class StudentDemo extends Demo {
      private Integer age;
      private Integer sex; }

    验证getField和getDeclareField

            for (Field field : demo.getClass().getDeclaredFields()) {
                System.out.println(field);
            }
            System.out.println(">>>>>>>>");
            for (Field field : demo.getClass().getFields()) {
                System.out.println(field);
            }
            System.out.println("===========================================");
    
            for (Field field : student.getClass().getDeclaredFields()) {
                System.out.println(field);
            }
            System.out.println(">>>>>>>>");
            for (Field field : student.getClass().getFields()) {
                System.out.println(field);
            }

    getDeclaredField获取所有申明的属性,不包含继承来的属性。

    getFields获取所有public的属性,包含继承来的属性。

    private java.lang.Integer com.logback.demo.common.Demo.id

    private java.lang.String com.logback.demo.common.Demo.name

    public java.lang.String com.logback.demo.common.Demo.desc

    >>>>>>>>

    public java.lang.String com.logback.demo.common.Demo.desc

    ===========================================

    private java.lang.Integer com.logback.demo.common.StudentDemo.age

    private java.lang.Integer com.logback.demo.common.StudentDemo.sex

    >>>>>>>>

    public java.lang.String com.logback.demo.common.Demo.desc

     
  • 相关阅读:
    【LeetCode 104_二叉树_遍历】Maximum Depth of Binary Tree
    【LeetCode 110_二叉树_遍历】Balanced Binary Tree
    【LeetCode 111_二叉树_遍历】Minimum Depth of Binary Tree
    【剑指Offer】36两个链表的第一个公共结点
    【剑指Offer】34第一个只出现一次的字符
    【剑指Offer】33丑数
    【剑指Offer】32把数组排成最小的数
    xgboost的原理没你想像的那么难(转载)
    【剑指Offer】31整数中1出现的次数(从1到n整数中1出现的次数)
    【剑指Offer】28连续子数组的最大和
  • 原文地址:https://www.cnblogs.com/mr-yang-localhost/p/9133525.html
Copyright © 2020-2023  润新知