Tuesday, September 21, 2010

the loop name for 'for' clause in java

Recently I just know such a useful syntax usage of java.

aLoopName: for (;;) {
 
// ...
 
while (someCondition)
 
// ...
   
if (otherCondition)
     
continue aLoopName;

No comments: