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