17 lines
473 B
Plaintext
17 lines
473 B
Plaintext
![]() |
== Exceptions
|
||
|
|
||
|
Equality operators are ignored if the loop counter is not modified within the body of the loop and either:
|
||
|
* starts below the ending value and is incremented by 1 on each iteration.
|
||
|
* starts above the ending value and is decremented by 1 on each iteration.
|
||
|
|
||
|
Equality operators are also ignored when the test is against <code>null</code>.
|
||
|
----
|
||
|
for (int i = 0; arr[i] != null; i++) {
|
||
|
// ...
|
||
|
}
|
||
|
|
||
|
for (int i = 0; (item = arr[i]) != null; i++) {
|
||
|
// ...
|
||
|
}
|
||
|
----
|