Unary Operators in Java

These are the increment and decrement operators in Java
Increment Operator (++)

Postfix adds +1 after the execution.
Prefix adds +1 before the execution.

Decrement Operator (--)

Just like Increment Operator 
Postfix adds -1 after the execution.
Prefix adds -1 before the execution.

Post a Comment

0 Comments