do-while-do ループのようなものが必要になることがよくあります。現時点では、この概念を次のように実装しています。
Instructions part 1 (for instance: read data)
while(Condition){
Instructions part 2 (save data)
Instructions part 1 (read next data)
}
パート 1 を 2 回書かなければならず、見苦しいです。重複を取り除くことは可能ですか?私は次のようなコンセプトを考えています。
do{
Instructions part 1
} while (Condition) do {
Instructions part 2
}