A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

What is JSP Operators ?

JSP Operators:

JSP supports all the logical and arithmetic operators supported by Java. Following table give a list of all the operators with the highest precedence appears at the top of the table, those with the lowest appear at the bottom.
                                     Within an expression, higher precedence operators will be evaluated first.

Category                 Operator                                  Associativity 

Postfix                           ( ) [ ] . (dot operator)                       Left to right
Unary                             ++ - - ! ~                                            Right to left

Multiplicative                * / %                                                Left to right

Additive                         + -                                                     Left to right

Shift                              >> >>> <<                                         Left to right

Relational                     > >= < <=                                          Left to right

Equality                       == !=                                                  Left to right

Bitwise AND              &                                                          Left to righ
t

Bitwise XOR               ^                                                          Left to right


Bitwise OR                  |                                                           Left to right

Logical AND              &&                                                       Left to right


Logical OR                  ||                                                          Left to right

Conditional                  ?:                                                        Right to left

Assignment        = += -= *= /= %= >>= <<= &= ^= |=          Right to left

Comma                     ,                                                              Left to right

LEARN TUTORIALS

.

.