Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8049599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T06:49:36+00:00 2026-06-05T06:49:36+00:00

In C++, what is the rationale for == and != having higher precedence than

  • 0

In C++, what is the rationale for == and != having higher precedence than bitwise AND, XOR, and OR?

It would seem to me more natural to have operator== and operator!= come after operator&, operator^, and operator|. I’d like to understand the motivation so that I can better remember the ordering.

For example, I would think the following kind of usage would be common:

if (bitFields & value == 0) { // Incorrect test.
  // Do Something.
}

Since the == result is either 1 or 0, why would you ever want to use it for bitwise operations? Instead, the above must be written as:

if ((bitFields & value) == 0) { // Correct test.
  // Do Something.
}

to get the intended meaning where the bitwise AND is done before the comparison to zero.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T06:49:37+00:00Added an answer on June 5, 2026 at 6:49 am
    1. It is historical from C
    2. Consider using functions in your if statement

    e.g.

    if (func1() == 2 & func2() == 3)
    

    With the precedence of == being higher that & ensures that both functions are called.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: What is the rationale behind having companion objects in Scala? Thanks for
I am wondering what the rationale is behind having Java's Map.put(key, value) method overwrite
HI all, I'm having some difficulty understanding the rationale behind group by aggregation in
From the various online articles on Java 7 I have come to know that
I am having a problem with vim 7.2 hanging (for about 10 seconds) after
Can someone explain me the rationale behind having these two functions, instead of just
After having an answer here wrong, because I wasn't up to date on the
Problem: I have a user who would like to generate an HTML page directly
After reading What's the rationale for null terminated strings? and some similar questions I
What is the rationale for not having static constructor in C++? If it were

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.