I have this expression:
y[i] = ( z[i] == a && b || c )
Which of these elements (&&, ||, ==<
&&
||
==<
First ==, then &&, then ||.
==
Your expression will be evaluated as y[i] = (((z[i] == a) && b) || c).
y[i] = (((z[i] == a) && b) || c)
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html