我經常需要一個像do-while-do循環的東西。在我執行這個概念的那一刻,像這樣:概念do-while-do循環
Instructions part 1 (for instance: read data)
while(Condition){
Instructions part 2 (save data)
Instructions part 1 (read next data)
}
我必須兩次寫第1部分,這很醜。是否有可能擺脫重複? 我認爲一個概念是這樣的:
do{
Instructions part 1
} while (Condition) do {
Instructions part 2
}
只有一個'for'循環,請參閱我的回答 – Walter
這有時被稱爲「循環半」。 –