我会尝试尽可能简单。 我有一类Pet对象:
public class Pet {
private String name;
private int treats;
private Coordinate coor;
}
请注意,coor
只是一个包含2个浮点数,经度和纬度的对象。
在我的可执行类中,我调用了PetList(一个链表)类'printAll()函数。
PetList List = new PetList();
... // adding nodes to my linkedlist etc.
...
List.printAll();
在我的printAll()函数中,我在Pet类中调用了toString函数:
public void printAll() {
LinkNode temp = first;
while(temp != null) {
System.out.print(toString());
System.out.println();
temp = temp.next;
}
}
在我的toString()函数中,我创建了一个StringBuilder:
// Most of this appending is formatting
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(name);
// sb.append("{");
sb.append(treats);
// sb.append("} ");
//if(coor.getLatitude() >= 0) {
// sb.append("+");
//}
sb.append(coor.getLatitude());
// sb.append(" ");
//if(coor.getLongitude() >= 0) {
// sb.append("+");
//}
sb.append(coor.getLongitude());
return sb.toString();
}
我正在阅读输入,直到EOF:
add 3.0 3.0 Three // add(adds a node) with 2 floats (longitude & latitude) and Three(a name)
add 2.0 2.0 Two
add 1.0 1.0 One
但是当我调用print(调用printAll())时,我得到了这个:
add 3.0 3.0 Three
add 2.0 2.0 Two
add 1.0 1.0 One
print
PetList@33909752
PetList@33909752
PetList@33909752
但我希望这种情况发生:
add 3.0 3.0 Three
add 2.0 2.0 Two
add 1.0 1.0 One
print
One{0} +1.0, +1.0
Two{0} +2.0, +2.0
Three{0} +3.0, +3.0
我不确定,但是我得到的是参考而不是任何实际数据?是否由于我所显示的代码中的任何内容?或者它在其他地方?感谢任何帮助!
编辑:
Here is the beginning of my PetList class:
public class PetList {
protected class LinkNode {
protected LinkNode next;
protected LinkNode prev;
protected Pet animal;
public LinkNode() {
next = prev = null;
}
}
以下是我现在调用toString函数的方法:
//public void printAll() {
// LinkNode temp = first;
// while(temp != null) {
System.out.print(animal.toString());
// System.out.println();
// temp = temp.next;
// }
//}
这是我在尝试编译时遇到的错误:
PetList.java:36: error: cannot find symbol
System.out.print(animal.toString());
^
symbol: variable animal
location: class PetList
答案 0 :(得分:1)
根据您的最新代码段:
System.out.print(animal.toString());
......应该是
System.out.print(temp.animal.toString());
由于animal
是LinkNode
的实例变量,而不是PetList