When I compile this code:
if (yPix < 0 || >= render.LENGTH) …
I get the following two errors:
Syntax error on token
>=, delete this token.
and
The operator
||is undefined for the argument type(s)boolean,int.
How do I fix this? I am new to Java.
You need a left-hand argument for the boolean operator. It should be: