devxlogo

Tips on Using Boolean Logic

Tips on Using Boolean Logic

Programmer’s of all skill levels often make errors when using Booleanlogic. This statement might not evaluate the way you think it should:

 IF (SomeNumber AND 16) OR _ (SomeOtherNumber <> 0) THEN... 

The (SomeNumber AND 16) will never return a True (-1). It willreturn False (0) or <> False (some value). Always phrase your evaluationsin a TRUE, FALSE, or <> ZERO (<> ZERO in this case means “hasvalue” as opposed to NOT FALSE which means TRUE (-1)). Not only willyour logical intention be better understood, you’ll be less likely to experiencea logic fault that would be a bear to track down.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist