我需要对我正在尝试实现的方法使用递归。问题是这里的递归没有像我想象的那样工作。这是我拥有的代码,我将在下面进一步解释。
public void printer(int level) {
System.out.println("A Car " + getId());
for (int j=0; j< carTypes.size(); j++) {
carTypes.get(j).printer( Index.get(j)+1);
if (carTypes.get(j) instanceof Toyota) {
level = 1;
}
else {
level = 1;
for (int i = 0; i <= j; i++){
if (j == Index.size()-1)
break;
if (Index.get(i) == Index.get(j+1)) {
number++;
}
}
}
System.out.println("Is recursion working right?");
}//End of for loop
}
我遇到的问题是我希望 carTypes.get(j).printer(Index.get(j)+1); 将被忽略并且该方法将被循环。我知道如果发生这种情况,我将不得不找到另一个来处理我的 for 循环,但现在,我只想让递归工作。我不完全确定我提供的信息是否足够,所以如果您需要更多信息,我会很乐意提供更多信息。
谢谢