Arithmetic
Operators
Arithmetic operators are used in mathematical expressions in the same
way that they are used in algebra. The following table lists the arithmetic
operators:
+ Addition
– Subtraction
* Multiplication
% Modulus
/ Division
++ Increment
+= Addition assignment
–= Subtraction assignment
*= Multiplication assignment
%= Modulus assignment
/= Division assignment
– – Decrement
The Bitwise Operators
Java defines several bitwise
operators that can be applied to the integer types, long, int, short, char, and byte. These
operators act upon the individual bits of their operands. They are summarized in the following table:
Operator Result
~ Bitwise unary NOT
& Bitwise AND
| Bitwise OR
^ Bitwise exclusive OR
>> Shift right
>>> Shift right zero
fill
<< Shift left
&= Bitwise AND assignment
|= Bitwise OR assignment
^= Bitwise exclusive OR
assignment
>>= Shift right assignment
>>>= Shift right zero fill
assignment
<<= Shift left assignment
Related Topics
Privacy Policy, Terms and Conditions, DMCA Policy and Compliant
Copyright © 2018-2023 BrainKart.com; All Rights Reserved. Developed by Therithal info, Chennai.