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)
feedback
|
|
Conditional expressions are used by the conditional and loop control structures to determine the control flow of a program.
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:
And it would mean this:
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:
Likewise, if you want to test whether a numeric expression is zero, you must write:
| |||
|
feedback
|
|
It means you need a boolean for a conditional, a conversion from an integral type won't be implicit. Instead of The former is an | |||
|
feedback
|
|
In C++, you can say | |||
|
feedback
|
|
Take the statement:
The "conditional expression" is
This is because integral (integer values) are treated as false when 0 and true otherwise. Languages like Java do not allow you to treat integers as boolean values in this way. | |||
|
feedback
|
|
Integral expression:
Boolean expression
| |||
|
feedback
|
|
In C/C++ you can do
In Java you cannot as i has to be a boolean | |||
|
feedback
|
|
It means that, in Java, the boolean value "true" is not interchangeable with the integer value "1" (or, more accurately, with any non-zero integer), and the boolean value "false" is not interchangeable with the integer value "0". | |||
|
feedback
|
|
An expression is code that computes a value. In both languages an expression has a static type that described the kind of values this expression yields. Integral means the the expression's type is int. Simply put, the authors emphasize each of the following is legal C++ code, but not legal Java code, because the
| |||
|
feedback
|
|
To put it another way: C/C++ don't have a real boolean type, they just use integers. Java does have them - and furthermore, it's got more strict typing than C/C++. | |||||||||||
feedback
|