码迷,mamicode.com
首页 > 编程语言 > 详细

java——如何通过class调用该类的方法并获得返回值?(反射)

时间:2018-12-26 20:55:12      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:test   pre   参数   system   edm   get   method   turn   类的方法   

demo:

public class T{
    public static void main(String[] args) throws Exception{
        //获得Person的Class对象
        Class<?> cls = Person.class;//Class.forName("testJavaSE.Person");
        Constructor con = cls.getDeclaredConstructor();
        System.out.println("得到了Person的构造函数");
        //创建Person实例
        Person p = (Person) con.newInstance();
        System.out.println("创建了一个person对象");
        //获得Person的Method对象,参数为方法名,参数列表的类型Class对象
        Method method = cls.getDeclaredMethod("eat", String.class);
        System.out.println("得到了Person的eat方法");
        //invoke方法,参数为Person实例对象,和想要调用的方法参数
        String value = (String) method.invoke(p, "肉");
        //输出invoke方法的返回值
        System.out.println("eat方法的返回值:" + value);
    }
    static class Person{
        public  String  eat(String food) {
            System.out.println("吃"+food);
            return "返回值";
        }
    }
}

输出:

  得到了Person的构造函数
  创建了一个person对象  
  得到了Person的eat方法
  吃肉
  eat方法的返回值:返回值

java——如何通过class调用该类的方法并获得返回值?(反射)

标签:test   pre   参数   system   edm   get   method   turn   类的方法   

原文地址:https://www.cnblogs.com/gaoquanquan/p/10181612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!