Eu quero ter duas variáveis de loop de tipos diferentes. Existe alguma maneira de fazer isto funcionar?
@Override
public T get(int index) throws IndexOutOfBoundsException {
// syntax error on first 'int'
for (Node<T> current = first, int currentIndex; current != null;
current = current.next, currentIndex++) {
if (currentIndex == index) {
return current.datum;
}
}
throw new IndexOutOfBoundsException();
}
first
? Não está declarado em lugar nenhum. É um membro da classe?