CONTENTS | PREV | NEXT Java Code Conventions


5.7 do-while Statements

A do-while statement should have the following form:

do {
statements;
} while (condition);


CONTENTS | PREV | NEXT
Copyright © 1997 Sun Microsystems, Inc. All Rights Reserved.