Java 通过反射动态执行方法

2020-07-08 14:39:17 浏览数 (1)

代码语言:javascript复制
    public static void main(String[] args) throws  Exception{




        Class clazz = Class.forName("com.mantis.hc.sale.dto.response.ExamAssistCustomerQueryRespDTO");
        Class clazz1 = ExamAssistCustomerQueryRespDTO.class;

        ExamAssistCustomerQueryRespDTO examAssistCustomerQueryRespDTO = new ExamAssistCustomerQueryRespDTO();
        examAssistCustomerQueryRespDTO.setAccount("qweqweqweqweqw");
         String  attachmenturl = (String) clazz.getMethod("getAccount").invoke(examAssistCustomerQueryRespDTO);//执行方法
        String  attachmenturl1 = (String) clazz1.getMethod("getAccount").invoke(examAssistCustomerQueryRespDTO);//执行方法

        System.out.println(attachmenturl);
        System.out.println(attachmenturl1);

    }

本文由 小马哥 创作,采用 知识共享署名4.0 国际许可协议进行许可 本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名

0 人点赞