最后一个参数使用了不准确的变量类型的 varargs 方法的非 varargs 调用
执行getMethod方法解决方案,最后一个参数修改成:
Method tMethod = tClass.getMethod("hashCode",new Class[0]);
执行invoke方法解决方案,最后一个参数修改成:
tMethod.invoke("hashCode",new Object[]{});
执行getMethod方法解决方案,最后一个参数修改成:
Method tMethod = tClass.getMethod("hashCode",new Class[0]);
执行invoke方法解决方案,最后一个参数修改成:
tMethod.invoke("hashCode",new Object[]{});