This document provides an overview of various Java operators including:
- Arithmetic operators like +, -, *, /, %
- Relational operators like >, <, ==, !=
- Assignment operators like =
- Logical operators like &&, ||, !
- Increment/decrement operators like ++, --
- Bitwise operators like &, |, ^
- String concatenation operator +
- Ternary operator ?:
It includes examples of using each operator and discusses shorthand operators, precedence rules, and automatic type conversions. Key operator types like arithmetic, relational, logical and bitwise are defined along with examples of using each in code snippets.