#ifdef linux
是一个预处理指令,用于检查当前代码是否在 Linux 系统上编译
#include <stdio.h>
int main() {
#ifdef linux
printf("This code is running on a Linux system.\n");
#else
printf("This code is not running on a Linux system.\n");
#endif
return 0;
}
在这个示例中,如果代码在 Linux 系统上编译,它将输出 “This code is running on a Linux system.”,否则输出 “This code is not running on a Linux system.”。请注意,#ifdef
指令只检查是否定义了 linux
宏,而不是检查当前操作系统。为了更准确地检查操作系统,你可以使用 #if defined(__linux__)
或 #if __linux__
。