java反射 getMethod_java 反射使用 Class.getMethod 应注意

java反射 getMethod_java 反射使用 Class.getMethod 应注意java反射使用Class.getMethod应注意记录下Methodmethod=clazz.getMethod(setMethodName,propertiesClass);如果使用该方法会不能获取以多态方式传入的参数会抛异常java.lang.NoSuchMethodException比如:publicclassStudent{privateStringname;…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

java 反射使用 Class.getMethod 应注意 记录下

Method method= clazz.getMethod(setMethodName,propertiesClass);

如果使用该方法 会不能获取以多态方式传入的参数

会抛异常 java.lang.NoSuchMethodException

比如:

public class Student {

private String name;

private int age;

private List list = new ArrayList();

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public int getAge() {

return age;

}

public void setAge(int age) {

this.age = age;

}

public List getList() {

return list;

}

public void setList(List list) {

this.list = list;

}

}

public static void main(String[] args) {

try {

Class> clazz= Class.forName(Student.class.getTypeName());

List list = new ArrayList();

clazz.getMethod(“setList”,list.getClass());

} catch (ClassNotFoundException | NoSuchMethodException e) {

e.printStackTrace();

}

}

此时会抛异常:

java.lang.NoSuchMethodException: com.jcb.xml.model.Student.setList(java.util.ArrayList)

解决方案:

/**

* 获取只有一个参数的对应方法

* @param className

* @param methodName

* @return

*/

private Method getMethod(String className,String methodName,Class> propertiesClass){

Method[] methods=getMethods(className);

for (Method method : methods) {

if(method.getName().equals(methodName)){

if(method.getParameterCount() == 1){

//该函数的参数类型和传入参数类型相同

if(method.getParameterTypes()[0].getTypeName().equals(propertiesClass.getTypeName())){

return method;

//该函数的参数类型是传入参数类型的父类

}else if(method.getParameterTypes()[0].getTypeName().equals(propertiesClass.getSuperclass().getTypeName())){

return method;

}else

{

Set superClassAndSuperInterfaceList= this.getAllSuperClassAndSuperInterface(propertiesClass);

//如果传入参数类型是参数类型的子类 也返回改函数

if(superClassAndSuperInterfaceList.contains(method.getParameterTypes()[0].getTypeName()))

return method;

}

}

}

}

return null;

}

/**

* 获取所有父类类型和父类接口类型

* @param clazz

* @return

*/

private Set getAllSuperClassAndSuperInterface(Class> clazz){

Set superClassAndSuperInterfaceList = new HashSet<>();

getAllSupersClasss(superClassAndSuperInterfaceList,clazz);

getAllSuperInterfaces(superClassAndSuperInterfaceList,clazz);

return superClassAndSuperInterfaceList;

}

/**

* 递归获取所父类 类型

* @param parentClassList

* @param clazz

*/

private Set getAllSupersClasss(Set parentClassList,Class> clazz){

parentClassList.add(clazz.getSuperclass().getName());

if(Object.class.getTypeName()!=clazz.getSuperclass().getTypeName()){

//父类也可能实现接口

getAllSuperInterfaces(parentClassList,clazz.getSuperclass());

//递归查询父类

getAllSupersClasss(parentClassList,clazz.getSuperclass());

}

return parentClassList;

}

/**

* 递归获取父类接口

* @param parentInterfaceList

* @param clazz

*/

private Set getAllSuperInterfaces(Set parentInterfaceList,Class> clazz){

for (Class> aClass : clazz.getInterfaces()) {

parentInterfaceList.add(aClass.getTypeName());

//递归查询实现接口

getAllSuperInterfaces(parentInterfaceList,aClass);

}

return parentInterfaceList;

}

使用该getMethod 代替反射 Class.getMethod 方法 就可以

暂时想到的就是这一个解决方案

多参数函数类似

原文:http://blog.51cto.com/5013162/2141201

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/190284.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号