| + | addition |
| - | subtraction |
| * | multiplication |
| / | division |
| % | modulus (remainder) |
| + | unary plus | ++ | increment | |
| - | unary minus | -- | decrement |
| += | -= | *= | /= | %= |
| For each compound assignment operator op=, x op= y; is the same as x = x op y; | ||||
| == | equal to | != | not equal to | |
| > | greater than | >= | greater than or equal to | |
| < | less than | <= | less than or equal to |
| ! | NOT (unary) |
| && | AND |
| || | OR |
See Java operator precedence for information about Java's order of operations.