You are on page 1of 6

Types of Java Operators

The Arithmetic Operators


Arithmetic operators are used in mathematical expressions in the same way that
they are used in algebra.
The Relational Operators
A relational operator compares two values and determines the relationship
between them.
The Bitwise Operators
Java defines several bitwise operators, which can be applied to the integer types,
long, int, short, char, and byte. Bitwise operator works on bits and performs bit-
by-bit operation. Assume if a = 60 and b = 13; now in binary format they will be as
follows-
The Logical Operators
Assume Boolean variables A holds true and variable B holds false, then –
The Assignment Operators
Assignment operators are used in Java to assign values to variables.

You might also like