gpt4 book ai didi

java - 返回子类时方法的返回类型不兼容

转载 作者:行者123 更新时间:2023-11-30 10:55:01 25 4
gpt4 key购买 nike

我正在尝试定义一种方法来返回签名给出的图上给定顶点的所有邻居

public abstract class GraphClass<V extends Vertex<?>,E extends Edge<V,?>> implements UndirectedGraph<V,E>{
.
.
.
public ArrayList<V> getNeighbors(V v) {...}
}

我希望从我的 KTree 类中重写这个方法,该类扩展了上面的 GraphClass,如下所示

public class KTree extends GraphClass<KVertex,KEdge> {...
public ArrayList<KVertex> getNeighbors(KVertex v) {
return v.getAdjList();
}
}

这给了我以下错误

Incompatible types. found 'java.ustil.ArrayList>', required 'java.ustil.ArrayList'


KVertex 类还扩展了原始的 Vertex 类,其中找到了 .getAdjList() 方法

public class KVertex extends Vertex<Integer> {...}

 public class Vertex<V>{
protected ArrayList<Vertex<V>> neighbours = new ArrayList<>();
...
public ArrayList<Vertex<V>> getAdjList(){
return neighbours;
}
}

我在编写此方法时的假设是返回该类型的子类应该仍然是有效的返回类型,因为 KVertex 继承 Vertex 类,并保留 is-a 关系。我该如何正确定义 KVertex 类或 getNeighbours 方法,以便我可以返回 Vertex 的任何子类的列表。谢谢!

最佳答案

主要问题出在Vertex类的方法上

public ArrayList<Vertex<V>> getAdjList()
{
return neighbours;
}

暗示它将返回一个 ArrayList<Vertex<Integer>>为你的 KVertex类。

但是getNeighbours(V v)想要返回 ArrayList<KVertex>ArrayList<Vertex<Integer>> 不协变所以这不可能发生。 is-a关系在类之间有效,但在类型变量之间无效:a List<KVertex> 不是 List<Vertex<Integer>> .

您的问题的解决方案是传递 Vertex 的真实类型到类(class)本身,例如:

  class Vertex<V, R extends Vertex<V, R>>
{
protected List<R> neighbours = new ArrayList<>();

public List<R> getAdjList()
{
return neighbours;
}
}

public abstract class GraphClass<V extends Vertex<?,?>,E extends Edge<V,?>> implements UndirectedGraph<V,E>
{
public abstract List<? extends V> getNeighbors(V v);
}

public class KVertex extends Vertex<Integer, KVertex>
{

}


public class KTree extends GraphClass<KVertex,KEdge>
{
@Override
public List<KVertex> getNeighbors(KVertex v)
{
return v.getAdjList();
}
}

通过这种方式,您可以生成 getAdjList返回 List扩展您的 Vertex<V> 的类型.

关于java - 返回子类时方法的返回类型不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33456675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com