vote up 1 vote down star

In C++, is this:

#ifdef COND_A && COND_B

the same as:

#if defined(COND_A) && defined(COND_B)

?

I was thinking it wasn't, but I haven't been able to find a difference with my compiler (VS2005).

flag

2 Answers

vote up 5 vote down check

They are not the same. The first one doesn't work (I tested in gcc 4.4.1). Error message was:

test.cc:1:15: warning: extra tokens at end of #ifdef directive

If you want to check if multiple things are defined, use the second one.

link|flag
Thanks for checking. I'm using Microsoft's compiler and it seems to allow it, but it just didn't seem right to me. – coryr Aug 21 at 14:23
vote up 5 vote down

Conditional Compilation

You can use the defined operator in the #if directive to use expressions that evaluate to 0 or 1 within a preprocessor line. This saves you from using nested preprocessing directives. The parentheses around the identifier are optional. For example:

#if defined (MAX) && ! defined (MIN)

Without using the defined operator, you would have to include the following two directives to perform the above example:

#ifdef max 
#ifndef min
link|flag
While what you say is correct, this does not answer the question at all, he asked if the two are the same...they are not. – Evan Teran Aug 21 at 14:07
I think it says "they are not the same", you can see that it explains how to make an equivalent of #if defined(COND_A) && defined(COND_B) which is different from #ifdef COND_A && COND_B – Svetlozar Angelov Aug 21 at 14:15

Your Answer

Get an OpenID
or
never shown

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