Je veux avoir deux variables de boucle de types différents. Y a-t-il un moyen de faire fonctionner cela?
@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
? Il n'est déclaré nulle part. Est-ce un membre de la classe?