微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – 使用反射和泛型时的警告

我该如何重写:

<T> T callMethod(String methodName,Object[] parameters) throws ... {
    ...
    return (T) SomeClass.class.getDeclaredMethod(methodName,parameterTypes).invoke(binding,parameters);
}

所以它不会产生警告

warning: [unchecked] unchecked cast
        return (T) SomeClass.class.getDeclaredMethod(methodName,parameters);
required: T
found:    Object
where T is a type-variable:
T extends Object declared in method <T>callMethod(String,Object[])

我的意思是无SupressWarnings解决方案.

解决方法

正如Peter Lawrey pointed out

There is no way the compiler can determine at compile time that the
method you select at runtime will have the return type of T.

我会更进一步说,callMethod根本不应该是一个通用的方法.由于调用者通过将其名称作为字符串传递来决定调用哪个方法,因此该方法应该只返回Object – 就像调用一样 – 并强制调用调用站点.

不要使用@SuppressWarnings – 这里没有办法证明这一点.

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

相关推荐