Can I do this in C++?
if (4<5<6)
cout<<"valid"<<endl;
i.e a double comparison? Since I know that I can
bool a;
a = 1+2<3+4<5>6;//etc
|
Can I do this in C++?
i.e a double comparison? Since I know that I can
|
||||
|
Yes, you can do it, but it won't be what you expect. It's parsed as
which yields
because You'll need
Also, yes, you can do
but that as well is parsed as
which will evaluate to |
|||||||||||||
|
|
It compiles but won't do what you expect -
same as
same as
which is of course true, even though I imagine you were expecting something quite different. |
|||
|
|
|
It may be clumsy but this will work:
|
|||
|
|
g++ Wall -g(i.e. with all warnings and debug info) and the compiler will warn you. – Basile Starynkevitch Oct 18 '12 at 18:55