谁能帮我找到JAVA中方法的返回类型。我试过这个。但不幸的是,它不起作用。请指导我。
Method testMethod = master.getClass().getMethod("getCnt");
if(!"int".equals(testMethod.getReturnType()))
{
System.out.println("not int ::" + testMethod.getReturnType());
}
输出 :
不是整数 ::int