这是我的代码:
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>