我有一个定义如下的节点类,但我不断在 Eclipse 中收到错误
void 是变量 connectNode 的无效类型
请解释为什么?
class Node{
char label;
boolean visited = false;
public Node (char l){
this.label=l;
}
public String toString() {
return Character.toString(label);
}
}
我已将 ArrayList 定义如下:
ArrayList<Node> nodes = new ArrayList<Node>();
我正在尝试使用以下方法打印开始和结束索引的值
public void connectNode(Node start,Node end){
int startIndex=nodes.indexOf(start);
int endIndex=nodes.indexOf(end);
System.out.println(startIndex);
System.out.println(endIndex);
}