문제

Why this code isn't compiling? If I understand right this should compile. Where I'm wrong?

#define THREADMODEL ASC 

#if THREADMODEL==NOASC
THIS BLOCK SHOULDN'T BE COMPILED
#endif

int main() {
}
도움이 되었습니까?

해결책

When the preprocessor interprets

#if THREADMODEL==NOASC

it will replace THREADMODEL with ASC:

#if ASC==NOASC

Unless you have #defined ASC and NOASC to have numeric values, the preprocessor will replace them with 0 values (it takes any undefined symbols and replaces them with 0):

#if 0==0

This then evaluates to 1 and so the preprocessor will evaluate the block.

To fix this, try giving different numeric values to ASC and NOASC, like this:

#define ASC    0
#define NOASC  (1 + (ASC))

Hope this helps!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top