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 8935183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:56:25+00:00 2026-06-15T09:56:25+00:00

I am seeing this a lot in someone’s code: null-check conditions are written like

  • 0

I am seeing this a lot in someone’s code: null-check conditions are written like this:

if (null == value)

rather than

if (value == null)

I don’t think there is any reason to have the null precede the operator in Java. Is there any benefit to doing it this way? Is this simply a case of a C++ programmer applying his skill to Java incorrectly, or am I missing something important?

  • 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-15T09:56:26+00:00Added an answer on June 15, 2026 at 9:56 am

    This is a case of so-called “Yoda Conditions” (item #1). Although it is possible to rationalize them in C/C++, there is no reason to use them in Java.

    In C/C++, expressions of any type can go into ifs and whiles. Writing

    if (var = NULL) // No compile-time error in C/C++
    

    instead of

    if (var == NULL)
    

    is a common error among novices. Yoda conditions were supposedly a remedy to address this problem, at the cost of “Yodifying” your code: C/C++ would trap assignments to NULL

    if (NULL = var) // Compile-time error
    

    but “reversed” NULL checks are OK:

    if (NULL == var)
    

    Since Java considers non-boolean expressions inside control blocks of if, while, and for to be errors, it would trap var = null in place of var == null, triggering an error. Therefore, there is no reason to give up readability by “Yodifying” your expressions.

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

Sidebar

Related Questions

I keep seeing this kind of code a lot in python setup.py files. from
I'm reviewing some code and I'm seeing a lot of this: class Foo {
A lot of times when reading source code I see something like this: public
I am browsing through Flamejs' source code and am seeing this a lot: Flame
I have been seeing this a lot lately and I am unable to find
Kept on seeing this pattern in code, but couldn't find any reference to it
I'm seeing this code in a project and I wonder if it is safe
I'm disassembling a firmware using IDA (mipsb processor) I'm seeing this a lot in
I am just seeing if this is feasible and maybe get a small code
After a LOT of server trouble we are now seeing this: http://www.unislim.com/ What the

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.