4
Java: For loop init'te birden çok değişkeni başlat?
Farklı türlerde iki döngü değişkenine sahip olmak istiyorum. Bunu çalıştırmanın bir yolu var mı? @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; …