Difference between revisions of "Java"
From Nerdica Wiki
(→Operators) |
(→Operators) |
||
Line 25: | Line 25: | ||
Relational Operators: > < >= <= == != | Relational Operators: > < >= <= == != | ||
− | |||
Logical Operators: && || & | ! ^ | Logical Operators: && || & | ! ^ |
Latest revision as of 12:21, 10 December 2009
Keywords
abstract default if private this boolean do implements protected throw break double import public throws byte else instanceof return transient case extends int short try catch final interface static void char finally long strictfp volatile class float native super while const for new switch continue goto package synchronized
Operators
Assignment Operators: = Arithmetic Operators: - + * / % ++ -- Relational Operators: > < >= <= == != Logical Operators: && || & | ! ^ Bit wise Operator: & | ^ >> >>> Compound Assignment Operators: += -= *= /= %= <<= >>= >>>= Conditional Operator: ?: