4
जावा: लूप इनिट के लिए कई वेरिएबल्स की शुरुआत करें?
मैं अलग-अलग प्रकार के दो लूप वैरिएबल रखना चाहता हूं। क्या यह काम करने का कोई तरीका है? @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 == …