Operators in Java
Published by: Anil K. Panta
Types of Operators:
Unary Operators: +, -, ++, --, !
Arithmetic Operators: +, -, *, /, %
Shift Operators: <<, >>, >>>
Relational Operators: <, >, <=, >=, ==, !=
Bitwise Operators: &, |, ^, ~
Logical Operators: &&, ||, !
Ternary Operator: condition ? value1 : value2
Assignment Operators: =, +=, -=, *=, /=, %=