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

  • SEARCH
  • Home
  • 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 6967243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:17:45+00:00 2026-05-27T16:17:45+00:00

Possible Duplicate: Order of condition checking? When i read some source codes, the if

  • 0

Possible Duplicate:
Order of condition checking?

When i read some source codes, the if statement is coded in this way,

if (1 == a) {
   ...
}

instead of

if (a == 1){
    ...
}

I read a programming book about the advantage of this way, but cannot remember exactly what it is about. Any one know about this ?

(Sorry if this question disturbs you 🙂 )

  • 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-05-27T16:17:46+00:00Added an answer on May 27, 2026 at 4:17 pm

    The advantage is compiler will tell you that error right away. For example, a = 1 will compile but will produce an error at run time whereas 1 = a will produce an error at compile time since 1 is not a valid lvalue.

    Example: this will produce an error right away:

           int a = 0;
           if(1 = a) {
            print("test");
           }
    

    Whereas this will compile (warnings may be produced depending on the compiler) but it will cause issues at run time.

           int a = 0;
           if(a = 1) {
               print("test");
           }
    

    The main idea here is to make certain that you are using == in a condition instead of =.

    That being said every modern compiler (ie. Eclipse) will treat the above as an error now. So it’s not as big of a deal as it used to back in the notepad and vi days (in my opinion). I personally prefer the a == 1 since that seems more readable to me.

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

Sidebar

Related Questions

Possible Duplicate: Elements order - for (... in ...) loop in javascript Assume you
Possible Duplicate: Ordering by the order of values in a SQL IN() clause With
Possible Duplicate: How do I calculate someone's age in C#? Maybe this could be
Possible Duplicate: .NET - What’s the best way to implement a catch all exceptions
Possible Duplicate: Python analog of natsort function (sort a list using a “natural order”
Possible Duplicate: C# constructor execution order class Foo { public int abc; Foo() {
Possible Duplicate: javascript - shuffle HTML list element order After a little bit of
Possible Duplicate: Is there some ninja trick to make a variable constant after its
Possible Duplicate: Python dictionary: are keys() and values() always the same order? If i
Possible Duplicate: splitting a string i have a string which looks like this: http://pastebin.com/m5508ff19

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.