vote up 1 vote down star

I read in a book that C++ provides additional operators to the usual &,|, and ! which are "and","or" and "not" respectively, plus they come with automatic short circuiting properties where applicable. I would like to use these operators in my code but for some reason the compiler interprets them as identifiers whenever i use them and throws an error. I'm using Visual C++ 2008 Express Edition with SP1. How do i activate these operators to use in my code. Thank you.

flag

2 Answers

vote up 4 vote down check

If you want to have the 'and', 'or', 'xor', etc keyword versions of the operators made available in MSVC++ then you either have to use the '/Za' option to disable extensions or you have to include iso646.h.

link|flag
@Micheal:Great, you've made my day. Thanks a lot :D. – gogole Jun 13 at 23:26
2  
Having made your day, I'd strongly suggest avoiding using the 'alternative tokens' for the operators. I think that most C++ programmers reading the code would prefer to see the usual operators. – Michael Burr Jun 13 at 23:30
1  
Well then, I think it is time for a change. We are supposed to get more descriptive with our variable names and the like right (i bet you'd scream if you saw int i = 3.142;). the token "and" and more descriptive in my opinion than & or && – gogole Jun 13 at 23:50
1  
I understand that it's a matter of opinion or style, but I think that people are used to the punctuation-style tokens and would find the keyword variants something they have to 'stop and think about'. I'm currently working a project where the existing code mostly uses macros for the logical operators (AND, OR, NEQ, etc), and I must say I don't like it at all... I believe the alternative keyword tokens were provided mostly to aid programmers with non-US keyboards that didn't always have the correct punctuation characters, not an attempt to make them more readable (just more type-able). – Michael Burr Jun 14 at 0:27
1  
A benefit to using the symbol style is that it is easy to distinguish between operators and variables when scanning code. It's a lot harder when everything is alphanumeric text. – emddudley Jun 14 at 0:39
show 4 more comments
vote up 2 vote down

The traditional C++ spelling [*] (just like in C) is && for "logical", short-circuit and, || for "logical", short-circuit or. ! is "logical" not (of course it doesn't short-circuit: what ever would that mean?!-). The bitwise versions are &, |, ~.

According to the C++ standard, the spellings you like (and, or, and so on) should also be implemented, but apparently popular compilers disobey that rule. However you should be able to #include <ciso646> or #include <iso646.h> to hack around that via macros -- see this page, and if your favorite compiler is missing these header files, just create them the obvious way, i.e.,

#define and &&
#define or ||

and so on. (Kudos and gratitude to the commenters for making me research the issue better and find this out!)

link|flag
4  
Recent versions of the C++ standard include spellings such as "and" and "or". – Greg Hewgill Jun 13 at 22:37
@Greg good point, added a footnote on the likely future standard (albeit of, more or less, just "academic" interest at this point in time;-). – Alex Martelli Jun 13 at 22:40
3  
'and', 'bitor', 'or', 'xor', 'compl', 'bitand', 'and_eq', 'or_eq', 'xor_eq', 'not' and 'not_eq' are all valid alternative tokens for '&&', '|', '||', '^', '~', '&', '&=', '|=', '^=', '!' and '!=' respectively in the current standard (2003). – Charles Bailey Jun 13 at 22:51
1  
VC 2008 is not stricly compliant, see here: stackoverflow.com/questions/198402/… – Charles Bailey Jun 13 at 23:07
2  
The and, or, bitand etc. keywords are defined in the original 1998 C++ Standard - see section 2.4. – Neil Butterworth Jun 13 at 23:22
show 4 more comments

Your Answer

Get an OpenID
or

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