リストの最後のテキストの最初の文字列として挿入したい場所に、最新のテキストの文字列を挿入する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;
}
}