Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: reset the font color.

...

Unlike the basic for statement, assignments to the loop variable fail to affect the loop's iteration order over the underlying set of objectsor the iterated collection or array. Consequently, an assignment to the loop variable is equivalent to modifying a variable local to the loop body whose initial value is the object referenced by the loop iterator. This modification is not necessarily erroneous but can obscure the loop functionality or indicate a misunderstanding of the underlying implementation of the enhanced for statement.

...

Code Block
bgColor#ffcccc
langjava
// ...
for (final Integer i: list) {
  if (first) {
    first = false;
    i = new Integer(99); // compiler error: variable i might already have been assigned
  }
// ...

Compliant Solution

This compliant solution processes the "modified" list but leaves the actual list unchanged:

...

Assignments to the loop variable of an enhanced for loop (for-each idiom) fail to affect the overall iteration order , or the iterated collection or array. This can lead to programmer confusion, and can leave data in a fragile or inconsistent state.

...