CONTENTS | PREV | NEXT | Java Code Conventions |
Each line should contain at most one statement. Example:
argv++; argc--; // AVOID!
Do not use the comma operator to group multiple statements unless it is for an obvious reason. Example:
if (err) {
Format.print(System.out, "error"), exit(1); //VERY WRONG!
}