我正在處理遞歸問題。在編寫請求的代碼之後,我所從事的網站運行帶有不同值的代碼作爲輸入。但是,第一次運行正常,但所有後續運行將第一次運行的返回值與後續每次運行的值連接起來。使用遞歸獲取以前的返回值與新值連接
我也在最後得到堆棧溢出錯誤。
我需要幫助!
下面是代碼:
package com.company;
import static java.lang.System.*;
public class Main {
public static String returnValue="";
public static void main(String[] args) {
repeat("this is fun", 1);
out.println(returnValue);
}
public static String repeat(String s, int i){
if (i==0) {
return returnValue;
}
else{
returnValue+=s;
repeat(s,i-1);
}
return returnValue;
}
}
任何幫助是極大的讚賞。
嘗試在'main()'中放入'returnValue =「」;''。 –
當我運行代碼時,它只是打印'這很有趣'。這正是你的代碼所做的。 '你期望什麼結果btw? –
提示:'static' .. – 2017-10-11 13:03:40