0
如何在每個額外的循環中添加next.
?在每個額外的for循環方法調用之前添加類名稱
第一個循環:
for(int i=0; i<=index; i++){
retValue = getValue();
}
第二環:
for(int i=0; i<=index; i++){
retValue = next.getValue();
三環路:
for(int i=0; i<=index; i++){
retValue = next.next.getValue();
}
等。
U se臨時變量?這是Java,而不是JavaScript。瞭解差異並正確標記您的問題。 – Xufox
看起來你不是在問你想要達到什麼目的,而是錯誤地爲你的問題假設一個解決方案,如果不可能解決不了你的問題。 此外,您並未在代碼示例中添加類名,而是添加了變量名。 –
你可以顯示一些周圍的代碼來給出一些上下文嗎? –