这里做个使用记录
Student s = new Student();
String methodName = "getName";//这个在Student类中有该方法
Method method = s.getClass().getMethod(methodName);//内存中获取该方法
String res = (String)method.invoke(s);//这个是说s对象中的getName()方法没有参数,得到返回类型为String的结果。
//String res = (String)method.invoke(s,args);//这个是说s对象中的getName()方法有参数args,具体是什么类型的,自己指定一下就可以了,得到返回类型为String的结果。java编写底层数据时,反射是最常用的方法之一。
Student s = new Student();
String methodName = "getName";//这个在Student类中有该方法
Method method = s.getClass().getMethod(methodName);//内存中获取该方法
String res = (String)method.invoke(s);//这个是说s对象中的getName()方法没有参数,得到返回类型为String的结果。
//String res = (String)method.invoke(s,args);//这个是说s对象中的getName()方法有参数args,具体是什么类型的,自己指定一下就可以了,得到返回类型为String的结果。java编写底层数据时,反射是最常用的方法之一。
本文深入探讨了Java反射机制的应用,包括如何通过反射获取对象的方法,并利用反射调用这些方法。重点介绍了反射的使用场景、获取方法的步骤以及有参与无参方法调用的区别,旨在提升开发者对Java反射的理解与实践能力。
19万+

被折叠的 条评论
为什么被折叠?



