java——如何通过class调用该类的方法并获得返回值?(反射)
Posted 高圈圈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java——如何通过class调用该类的方法并获得返回值?(反射)相关的知识,希望对你有一定的参考价值。
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调用该类的方法并获得返回值?(反射)的主要内容,如果未能解决你的问题,请参考以下文章