我有这个构造函数,它接收一组jmusic
注释,并且我试图将每个单独的注释设置为一个链接列表中的一个单独的节点,该链接列表SoloNodes
只包含一个单独的注释。该构造函数中的大多数方法都是我自己编写的,但它们很容易解释。我必须做什么才能使它生成一个链表?
public Solo(Phrase myPhrase)
{
int length=myPhrase.length();
head=new SoloNode();
SoloNode next=new SoloNode();
for(int i=1; i<=length;i++)
{
head.setNote(myPhrase.getNote(i));
next=head.copyNode();
head.setNext(next);
head=next;
i++;
}
}