Java

From Nerdica Wiki
Revision as of 13:21, 10 December 2009 by Travis (Talk | contribs) (Operators)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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:         ?:

External Links