}作者: 尤圣回 时间: 2012-9-23 20:54
不对 我测试了一下 可以打印的作者: 梁志冰 时间: 2012-9-23 21:32
public String toString() {
// tip: this is the source of the problem
return "InfiniteRecursion address: " + this +"\n";
}
这里的this不能直接这样用,this代表的本类对象的引用。这里的this不能代表任何对象
public String toString() {
// tip: this is the source of the problem
return "InfiniteRecursion address: " + Integer.toHexString(hashCode())+"\n";
}