我正在尝试创建一个包含“Vertex3<T>”实例的集合。我对创建集合的行有一点问题:
public Set<Vertex3<Integer>> verticies = new Set<Vertex3<Integer>>();
Eclipse 在等号右侧的“Set”部分用红色下划线,并带有错误消息“无法实例化类型 Set<Vertex3<Integer>> ”。
'Vertex3<T>' 定义如下:
public class Vertex3 <T> {
public T x;
public T y;
public T z;
public Vertex3() {
// do nothing
}
public Vertex3(T x, T y, T z) {
this.x = x;
this.y = y;
this.z = z;
}
public Vertex3(T x, T y) {
this.x = x;
this.y = y;
}
}
可以提供的任何帮助表示赞赏。