可能重复:
在 Java 中创建泛型类型的实例?
我有一些代码:
public class foo<K> {
public void bar() {
K cheese = new K();
// stuff
}
}
这不会编译,Intellij 的 linter 告诉我Type parameter 'K' cannot be instantiated directly
。
我将如何实例化K
.
可能重复:
在 Java 中创建泛型类型的实例?
我有一些代码:
public class foo<K> {
public void bar() {
K cheese = new K();
// stuff
}
}
这不会编译,Intellij 的 linter 告诉我Type parameter 'K' cannot be instantiated directly
。
我将如何实例化K
.