Precedence of Numeric Operators : Operators « Operators « SCJP

Home
SCJP
1.Java Source And Data Type
2.Operators
3.Modifiers
4.Type Casting
5.Statements
6.Object Oriented
7.Thread
8.Utility Classes
9.File
SCJP » Operators » Operators 
2.1.1.Precedence of Numeric Operators
Precedence  Operator         Description

1           ++               Increment by (or 1.0)

1           --               Decrement by (or 1.0)

1           +                Unary plus

1           -                Unary minus

2           *                Multiplication

2           /                Division

2           %                Modulo

3           +                Addition

3           -                Subtraction

5           <                Less than

5           >                Greater than

5           <=               Less than/equal

5           >=               Greater than/equal

6           ==               Equal (identical values)

6           !=               Not equal to

13          op=              op assignment (+=, -=, *=, and so on)
2.1.Operators
2.1.1.Precedence of Numeric Operators
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.