loop… until in Java
In case you are wondering where’s do-until (or loop-until) in Java, you might want to remember that
loop {
…
} until (condition);
tastes just the same as
do {
…
} while (!condition);
In case you are wondering where’s do-until (or loop-until) in Java, you might want to remember that
loop {
…
} until (condition);
tastes just the same as
do {
…
} while (!condition);