これが私のコードです:
class mynode
{
mynode prev;
mynode next;
int value;
}
class link
{
List<mynode> pos;
link(int x)
{
pos = new ArrayList<mynode>();
}
}
ここで、List を使用する方が ArrayList を使用するよりも優れていることを確認しました。では、なぜ以下のエラーが表示されるのですか?
The type List is not generic; it cannot be parameterized with arguments <mynode>