- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Operators Precedence
Operator precedence determines the grouping of terms in an expression. This affects how an expression is evaluated. Certain operators have higher precedence than others; for example, the multiplication operator has higher precedence than the addition operator −
For example, x = 7 + 3 * 2; here x is assigned 13, not 20 because operator * has higher precedence than +, so it first gets multiplied with 3 * 2 and then adds into 7.
Here, operators with the highest precedence appear 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 toright |
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 right |
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 |
- Related Articles
- Python Operators Precedence
- Perl Operators Precedence
- Operators Precedence in C++
- C++ Operators with Precedence and Associativity
- What is correct operators precedence in Python?
- According to Java Operator precedence, which operator has the highest precedence?
- Java Relational Operators
- Java Bitwise Operators
- Java Logical Operators
- Java Shift operators
- Java Assignment Operators
- Java Boolean operators
- Java arithmetic operators
- Basic operators in Java
- Division Operators in Java

Advertisements