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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T09:49:27+00:00 2026-05-15T09:49:27+00:00

What does ‘Conditional expressions can be only boolean, not integral.’ mean? I do not

  • 0

What does ‘Conditional expressions can be only boolean, not integral.’ mean? I do not know Java and I know C++ deffenetly not enought to understend what it means.. Please help (found in http://www.javacoffeebreak.com/articles/thinkinginjava/comparingc++andjava.html in Comparing C++ and Java item 7 sub item 1)

  • 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-15T09:49:28+00:00Added an answer on May 15, 2026 at 9:49 am

    Conditional expressions are used by the conditional and loop control structures to determine the control flow of a program.

    // conditional control structure
    if (conditionalExpression) {
        codeThatRunsIfConditionalExpressionIsTrue();
    } else {
        codeThatRunsIfConditionalExpressionIsFalse();
    }
    
    // basic loop control structure
    while (conditionalExpression) {
        codeThatRunsUntilConditionalExpressionIsFalse();
    }
    
    // run-at-least-once loop control structure
    do {
        codeThatRunsAtLeastOnceUntilConditionalExpressionIsFalse();
    } while (conditionalExpression);
    

    From a logical point of view, conditional expressions are inherently boolean (true or false). However, some languages like C and C++ allow you to use numerical expressions or even pointers as conditional expressions. When a non-boolean expression is used as a conditional expression, they are implicitly converted into comparisions with zero. For example, you could write:

    if (numericalExpression) {
        // ...
    }
    

    And it would mean this:

    if (numericalExpression != 0) {
        // ...
    }
    

    This allows for concise code, especially in pointer languages like C and C++, where testing for null pointers is quite common. However, making your code concise doesn’t necessarily make it clearer. In high-level languages like C# or Java, using numerical expressions as conditional expressions is not allowed. If you want to test whether a reference to an object has been initialized, you must write:

    if (myObject != null) /* (myObject) alone not allowed */ {
        // ...
    }
    

    Likewise, if you want to test whether a numeric expression is zero, you must write:

    if (numericalExpression != 0) /* (numericalExpression) alone not allowed */ {
        // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know any good chart api for a web application in java? This
Does anybody know if there is a way of having an image upload field
Does anyone know how to disable the product image zoom in Magento?
Does the FB Like button work in email newsletters? Or will this only be
Does anyone know if SVG is working in a recent version of IE?
Does Ehcache 2.1 now support the transactional cache concurrency strategy in Hibernate 3.3.2GA? That
Does python have a full fledged email library with things for pop, smtp, pop3
Does anyone knows how to completely disable skinning support in Apache Trinidad? All I
Does system.Reflection work when I use release folder ?
Does anyone have any pointers for creating a tristate image button? I have 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.