任何人都可以幫助我與遞歸邏輯?我有一個迭代器對象,我正在迭代使用while循環。然後在每個迭代的對象中,我需要再次迭代等等。從迭代器迭代器等遞歸邏輯
private void handleRecursiveMethod(someMethod) {
Iterator<Sometype> methods=doingSomething(someMethod));
while(methods.hasNext()){
printingDetailsAboutThisMethod(methods.next())
// Again with each method I have to do same
// operation until methods.hasNext becomes false.
handleRecursiveMethod(methods.next());
// By calling this, it does not complete while
// loop first time.
}
}
在你做任何事情之前,你需要一個參數'someMethod'的類型。 –
假設有一些類型。我想問一下遞歸邏輯。 – marion
這不是遞歸邏輯。這是迭代邏輯。我很困惑你在問什麼。 –