サブクラスを定義しましたが、パラメーターが異なる2つのコンストラクターが必要です。こんな感じ
public class GraphNode extends Entity{
protected String id;
public GraphNode(PVector pos, String id) {
super(pos,0);
this.id = id;
}
public GraphNode(PVector pos, String id, List<GraphEdge>) {
this(pos, id);
//do something else
}
}
コンパイラは私に次のように言い続けます:
GraphNodeタイプの重複メソッドGraphNode(PVector、String)
私は何が間違っているのですか?