April 18, 2008

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);

0 comments:

Post a Comment