下面这个类中的public Record other是什么,或者说这样写后能够做什么,感觉好像和int,double,char那些不同,也不能赋值给other....
class Record{
public int value;
public Record other;
}
应该是类似链表,指向下一条记录。
于是可以用
Record r = ...
while (r != null)
{
println(r.value);
r = r.other;
}
遍历