我有一个 add 方法,它将最新的文本字符串插入到我希望它作为第一个文本字符串插入的列表的末尾。任何帮助表示赞赏。这是方法:
public void add (Magazine mag)
{
MagazineNode node = new MagazineNode (mag);
MagazineNode current;
if (list == null)
list = node;
else
{
current = list;
while (current.next != null)
current = current.next;
current.next = node;
}
}