An operator designates a mathematical operation or some other type of operation that can be performed on operands. Java has arithmetic operators, relational operators (also known as binary operators) and logical operators (also known as boolean operators).
+ | Addition |
- | Subtraction |
* | Multiplication |
/ | Division |
% | Remainder |
++ | Increment |
— | Decrement |
+= | Addition and assignment |
-= | Subtraction and assignment |
*= | Multiplication and assignment |
/= | Division and assignment |
%= | Remainder and assignment |
== | Equal |
!= | Not equal |
< | Less than |
<= | Less than or equal to |
> | Greater than |
>= | Greater than or equal to |
! | Not |
& | And |
&& | Conditional and |
| | Or |
|| | Conditional or |
^ | xor |
dummies
Source:http://www.dummies.com/how-to/content/using-java-operators.html
No comments:
Post a Comment