4
Java: เริ่มต้นตัวแปรหลายตัวในสำหรับ loop init?
ฉันต้องการมีตัวแปรลูปสองประเภทที่แตกต่างกัน มีวิธีใดบ้างที่จะทำให้งานนี้ @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(); }