gpt4 book ai didi

java - Java错误: The method setParent(IndexNode) is undefined for the type DocumentIndex and type IndexNode

转载 作者:行者123 更新时间:2023-12-02 11:03:55 25 4
gpt4 key购买 nike

我知道我是新手。我只是在学习编程。我正在使用Eclipse。我正在编程一个具有两个类的二进制树:IndexNode(仅是一个节点)和Document Index(具有该树)。但是,另一个是我同时在我的setter和getter的每一个上同时收到两条消息。这两个类在同一包中。我让Eclipse重新创建了setter(在我发布的代码中),但仍然给了我同样的错误。您能提供的任何帮助将不胜感激。

-未为类型DocumentIndex定义方法setParent(IndexNode)
-未为类型IndexNode定义方法setParent(IndexNode)

DocumentIndex类的代码:

public class DocumentIndex{

IndexNode root;
private IndexNode currentNode;
private IndexNode newNode;

public DocumentIndex(){

root = null;
}

public void addValue(String word){

if( newNode != root ){

newNode.setWord(word);

addRoot();
}
}

public void addRoot(){



if (root == null){

root = newNode;
currentNode = root;
currentNode = setParent(currentNode);
} *//I get these errors for all my getters and setters*
}

这是我的IndexNode类代码:
public class IndexNode {

private String word;
private IndexNode left = null;
private IndexNode right = null;
private IndexNode parent;

public IndexNode( String word, IndexNode left, IndexNode right, IndexNode parent ){

this.word = word;
this.left = left;
this.right = right;
this.parent = parent;

}

public void setWord( String word ){

this.word = word;
}

public String getWord(){

return word;
}

public void getLeft( IndexNode left ){

this.left = left;
}

public void getRight( IndexNode right ){

this.right = right;
}

public IndexNode setLeft(){

return left;
}

public IndexNode setRight(){

return right;
}

public void getParent( IndexNode parent ){

this.parent = parent;
}

}

最佳答案

您的代码有很多错误:

currentNode = setParent(currentNode);

Setter用于设置对象的一些值,为了获取值,我们使用getters。要获取当前节点的值,首先在Indexnode类中为其生成一个getter。因此,为了进一步说明,我将尝试用set方法替换setter方法调用getter方法。

Java的基本规则是,如果要使用其他类的方法,则需要使用其对象来调用其方法。
currentNode = getParent(); 

由于为Indexnode类定义了getParent方法,因此该方法不起作用,而您正在其他方法中调用它。

如果要调用它,则应首先创建Indexnode的对象:
Indexnode obj1=new Indexnode(); //creating an object 

然后使用它的对象调用它的方法。
currentobj=obj1.getparent(); //calling getParent() method which will return you parent's value

编辑:

Indexnode obj1=new Indexnode(); //new Indexnode() -- expecting empty construtor



将不起作用,因为您创建了参数化的构造函数,在这种情况下,jvm不会为您创建默认构造函数。您将必须为其创建默认的空构造函数。AS在执行Indexnode obj1 = new时会调用空构造函数Indexnode();

关于java - Java错误: The method setParent(IndexNode) is undefined for the type DocumentIndex and type IndexNode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24803423/

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