Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wonder if this would be a bad idea to makes such defines in C:

#define and &&
#define or  ||
#define not !
share|improve this question
What would be the benefit? – delnan Feb 23 '11 at 17:28
readability, I guess – Halst Feb 23 '11 at 17:32
2  
readability to people who aren't familiar with C. It'll probably reduce readability for people who are familiar with C, because in practice almost nobody uses them. People who are extremely familiar with the odd corners of C will at least recognise them as coming from a standard header. Probably. But recognition doesn't mean it'll read better. – Steve Jessop Feb 23 '11 at 17:35
1  
I think you forget to add #define BEGIN { and #define END } to your list... – mu is too short Feb 23 '11 at 19:34

1 Answer

up vote 6 down vote accepted

It would definitely be a bad idea to do this yourself.

If you really want names like and instead of symbols like &&, you can include the <iso646.h> C Standard Library header, which defines several named operators, including the three you mention.

In C++, the alternative representations (like and and or) are operators built into the language, so you don't need to include any header to use them, and it isn't possible to define them as macros (a macro name must be an identifier, and the alternative representations are operators, not identifiers, even during preprocessing).

share|improve this answer
That's standard, but the least who would object to doing this yourself would consider #include <iso646.h> a better idea... – delnan Feb 23 '11 at 17:26
Flashback to a wasted afternoon for me. Developer A decides, hey, I'll replace all instances of && with and, || with or, etc. For some reason this is causing conflicts somewhere else, so developer B removes the #defines and does a s/and/&&/g, s/or/||/g on the source and checks in back in. You can see where this is going. Keywords like for are now f||, instances of and and or in the comments are now && and ||, variable and function names are munged, the whole nut. I had to grovel through the affected files line by line to fix everything. Don't do this. – John Bode Feb 23 '11 at 18:09
1  
@John should have used 's/\<and\>/&&/g' and 's/\<or\>/||/g' =) – SiegeX Feb 24 '11 at 6:42
@SiegeX: Should have, but didn't. And I got to clean up afterwards. – John Bode Feb 24 '11 at 15:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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