...
Exceptions
Wiki Markup |
---|
*EXP06-EX1:* Sometimes programmersProgrammers who are aware of the short-circuit behavior often use it to their advantage, as in this example from Flanagan \[[Flanagan 2005|AA. Bibliography#Flanagan 05]\] exemplifies in the following example: |
Code Block |
---|
if (data != null && i < data.length && data[i] != -1) ... |
...