该方法应该从给定索引处的链接列表中返回类型为“type”的节点。
public type get(int index) throws Exception
{
int currPos = 0;
Node<type> curr = null;
if(start!= null && index >=0)
{
curr = start;
while(currPos != index && curr != null)
{
curr = curr.getNext();
currPos++;
}
}
return curr;
为什么它在编译时给我一个“不兼容的类型”错误?