Precedence of the 10.Java operator

Source: Internet
Author: User

When multiple operators appear in an expression, who is the first? This concerns the precedence of the operator. In an expression of a multi-operator, the difference in operator precedence results in a very large difference in the result, for example, (1+3) + (3+2) * *, if the expression is the highest priority of the plus sign, the answer is 18, and if the multiplication sign is the highest priority, the answer is 14. The precedence of the individual operators in Java programming is described in detail below, as shown in the following table.

Operator Precedence Table
operator Priority Level
Brackets 1
++,-- 2
~,! 3
*,/,% 4
+,- 5
>>,<<,>>> 6
>,<,>=,<= 7
==!,!= 8
& 9
^ 10
| 11
&& 12
|| 13
?: 14

Precedence of the 10.Java operator

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.