Java Reference
In-Depth Information
Operator
Description
Precedence Level
Associativity
+
Addition
5
Left to right
-
Subtraction
5
Left to right
+
String concatenation
5
Left to right
Left shift
6
Left to right
<<
Right shift with sign
extension
>>
6
Left to right
Right shift with zero
extension
>>>
6
Left to right
<
Less than
7
Left to right
< ¼
Less than or equal to
7
Left to right
>
Greater than
7
Left to right
> ¼
Greater than or equal to
7
Left to right
instanceof
Type comparison
7
Left to right
Equal to
8
Left to right
¼¼
! ¼
Not equal to
8
Left to right
&
Bitwise AND
9
Left to right
&
Logical AND
9
Left to right
^
Bitwise XOR
10
Left to right
^
Logical XOR
10
Left to right
|
Bitwise OR
11
Left to right
Logical OR
11
Left to right
|
&&
Logical AND
12
Left to right
Search WWH ::




Custom Search