for-each循環如何以遞歸方式或其他方法調用方法時如何工作?for-each循環是如何工作的?
實施例:
for(String permutation : permute(remaining))
{
// Concatenate the first character with the permutations of the remaining chars
set.add(chars.charAt(i) + permutation);
}
通過該方法置換需要在字符串並返回一組的方式。
謝謝。
你爲什麼不編寫,並一步儘管它在調試器中,比如Eclipse? – OldProgrammer
這與遞歸無關,正如所提出的那樣。 –
或使用javap進行反彙編! – auselen