vote up 8 vote down star

Hi,

Here is a very simple C++ application I made with QtCreator :

int main(int argc, char *argv[])
{
    int a = 1;
    int b = 2;

    if (a < 1 or b > 3)
    {
       return 1;
    }
    return 0;
}

To me, this is not valid C++, as the keyword or is not a reserved keyword.

But if I compile and run it, it works find without any warnings ! The exit code is 0 and if I change b = 4, the exit code is 1 !

I'm not including anything to make sure there is no hidden define.

This is really strange to me. Is this something Qt is defining ? I didn't find anything in the documentation regarding that.

flag

78% accept rate
Crazyness! Well spotted +1 – Justicle Sep 17 at 5:47
2  
What do you mean well spotted? or is a keyword in C++. – Michael Foukarakis Sep 17 at 6:02

4 Answers

vote up 26 vote down check

According to Wikipedia:

C++ defines keywords to act as aliases for a number of symbols that function as operators: and (&&), bitand (&), and_eq (&=), or (||), bitor (|), or_eq (|=), xor (^), xor_eq (^=), not (!), not_eq (!=), compl (~).

As MadKeithV points out, these replacements came from C's iso646.h, and were included in ISO C++ as operator keywords. The Wikipedia article for iso646.h says that the reason for these keywords was indeed for international and other non-QWERTY keyboards that might not have had easy access to the symbols.

link|flag
Cool - I have been writing C++ since the early 90's and I had no idea about this. I'm not likely to ever use it, but it's good to know. – Graeme Perrow Sep 16 at 14:42
I didn't know about it either, until I looked. It seems awkward to use, and I'm sure there are a lot of people out there who write C++ and don't know about it. – Thomas Owens Sep 16 at 15:02
1  
I believe that these were added to help people with other-than-English keyboards that may not have all of the symbol keys (&, |, etc). – KeithB Sep 16 at 15:27
1  
+1. Some guys on IRC did this some day: struct y { compl y(); }; :) – Johannes Schaub - litb Sep 16 at 15:47
This was news to me. +1 – suszterpatt Sep 16 at 18:43
show 1 more comment
vote up 1 vote down

iso646.h defines a number of operator alternatives - it's part of the C++ standard.

link|flag
<iso646.h> is empty in C++. – avakar Sep 16 at 15:13
It is not in Visual Studio 2003 through 2010 (msdn.microsoft.com/en-us/library/…) – MadKeithV Sep 16 at 15:24
Let me rephrase: the file is empty as far as C++ compiler is concerned. Check the sources, you'll see that the macros are conditional on __cplusplus macro not being defined. – avakar Sep 17 at 11:38
Unless _MSC_EXTENSIONS is defined – MadKeithV Sep 17 at 11:47
MSVC doesn't implement a lot of stuff added since the 1989 C standard. <iso646.h> was added as part of the 1994 changes, along with various wide-character headers and the like. – Jonathan Leffler Sep 18 at 1:50
vote up -3 vote down

Probably something defines something like that:

#define or ||

Then or and || are equivalent.

EDIT: Only true for C, in C++, or is a reserved keyword which does what you expect it to do (e.g. see here)

link|flag
vote up 8 vote down

or is a C++ keyword, and you're allowed to use it instead of ||. There is no magic.

The same goes for and and most other logical operators. It's generally best to stick to the commonly known names though, to avoid confusion like this. If you use or, someone will wonder "why does this compile" ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.