After saving the data

You want sometimes do modifications on the data as:

OPERATORS

DESCRIPTION

EXAMPLE

Arithmetic

mathematical expressions as

+ / * % ++

There are also other ways in which you can work with your data:

OPERATORS

DESCRIPTION

EXAMPLE

Relational

Checking the data with

!= == > < >= <=

Bitwise

Operations with bits

& | ^ ~ << >> >>>

Logical

Operators with which you can say: AND, OR, NOT

&& || !

Assignment

To = sign and its shortcut methods

+= -= *= /= %= <<= >>= &= ^= |=

Miscellaneous

Shortcuts to make conditions and instanceof

? :   instanceof