Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
public void f(boolean a, boolean b) {
  while ( (a == b) && flag ) {
    /* ... */
  }
}

Exceptions

EXP51:EX0: Using the assignment operator in these conditional expressions is permissible if it is not the controlling expression, as shown in the following compliant example:

...