作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码
class MyClass<E> {
public static List<E> myUtilMethod(){
}
}
编译后报错
non-static type variable E cannot be referenced from a static context
如何从此方法返回泛型类型?
最佳答案
您需要将类型参数添加到您的 myUtilMethod
方法...
public static <T> List<T> myUtilMethod() {
^
|------- here!!
// TODDY
return someList;
}
编辑:
作为makoto spoted,在那种情况下与 MyClass
中定义的不同。您应该将该通用类型重命名为其他名称...(我发布的代码中的 T!)
关于java - 在静态方法 Java 中使用泛型返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45550869/
我是一名优秀的程序员,十分优秀!