gpt4 book ai didi

java - 如何在JAVA中查找方法的返回类型?

转载 作者:搜寻专家 更新时间:2023-10-30 21:43:06 24 4
gpt4 key购买 nike

谁能帮我找出JAVA 中方法的返回类型。我试过了。但不幸的是它不起作用。请指导我。

 Method testMethod = master.getClass().getMethod("getCnt");

if(!"int".equals(testMethod.getReturnType()))
{
System.out.println("not int ::" + testMethod.getReturnType());
}

输出:

不是整数::整数

最佳答案

方法 getReturnType() 返回 Class

你可以试试:

if (testMethod.getReturnType().equals(Integer.TYPE)){ 
.....;
}

关于java - 如何在JAVA中查找方法的返回类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14730223/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com