ifndef的用法?
#ifndef _TEST_H ------1#define _TEST_H ------2
#ifdef __cplusplus ----3
extern "C" { --------4
#endif --------5
/*...*/
#ifdef __cplusplus --------6
}
#endif --------7
#endif /* _TEST_H */ --------8
以上的8个地方是什么意思啊?
我在OPNET里面看见这个,从来没有见过宏定义的这种用法?
谢谢啊