#ifdef Macro_Value 等价于 #if defined (Macro_Value)

来源:互联网 发布:阿里云 ecs 编辑:程序博客网 时间:2024/06/05 09:45

在Linux和u-boot源码里面,经常看到 #ifdef 和 #if defined ( ) 的用法:

#include <stdio.h>#define hello_worldint main( void ){#if defined ( hello_world )    printf ( "hello world is defined.\n" );#endif #ifdef hello_world    printf ( "hello world is defined.\n" );#endif    return 0;}

执行结果:
hello world is defined.
hello world is defined.


总结:

define Macro_Value 是选择开关;

define Macro_Value 10 定义宏变量;

0 0
原创粉丝点击