
Sun Services
Java™ Programming Language
Module 4, slide 29 of 31
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
The continue Statement
1 do {
2
statement;
3 if (
condition
) {
4 continue;
5}
6
statement;
7 } while (
test_expr
);