1 __GNUC__ / __GNUG__是gcc / g++编译器编译代码时预约义的一个宏。须要针对gcc / g++编写代码时, 能够使用该宏进行条件编译。ios
2 __GNUC__ / __GNUG__的值表示gcc / g++的版本。须要针对gcc / g++特定版本编写代码时,也能够使用该宏进行条件编译。windows
3 __GNUC__ / __GNUG__的类型是“int”,该宏被扩展后, 获得的是整数字面值。能够经过仅预处理,查看宏扩展后的文本。函数
#include <assert.h> #include <stdio.h> #include <typeinfo> #ifndef __GNUC__ /* error sample for gcc compiler */ #elif __GNUG__ /* error sample for gcc compiler */ #else /* use gcc special extension: #warning , __attribute__, etc. */ #endif int main() { printf("hello gcc %d\n",__GNUC__); assert( typeid(__GNUC__)==typeid(int) ); printf("press Enter to exit\n"); (void)getchar(); return 0; }
1 _MSC_VER是微软C/C++编译器——cl.exe编译代码时预约义的一个宏。须要针对cl编写代码时, 能够使用该宏进行条件编译。spa
2 _MSC_VER的值表示cl的版本。须要针对cl特定版本编写代码时, 也能够使用该宏进行条件编译。翻译
3 _MSC_VER的类型是"int"。该宏被扩展后,获得的是整数字面值。能够经过仅预处理, 查看宏扩展后的文本。code
/* _MSC_VER\_MSC_VER.cpp */ #include <stdio.h> #include <stdlib.h> #include <typeinfo> #define TO_LITERAL(text) TO_LITERAL_(text) #define TO_LITERAL_(text) #text #ifndef _MSC_VER #error sample for msvc compiler #else /* use msvc special extension: #pragma message,__declspec,__stdcall,etc. */ #pragma message("----------------------------------------\n") #pragma message("----------------------------------------\n") #pragma message("---------- hello msvc " TO_LITERAL(_MSC_VER) " -------------") #pragma message("\n----------------------------------------\n") #pragma message("----------------------------------------\n") extern __declspec(dllimport) void __stdcall declare_but_dont_reference(void); #endif int main() { printf("hello msvc, version=%d\n",_MSC_VER); printf("typeof _MSC_VER=\"%s\"\n",typeid(_MSC_VER).name()); system("pause"); /* msvc only on windows? */ return 0; }
__FILE__:当前程序行所在源文件名称,标准C支持,该宏当作字符串对待;
__LINE__:当前程序行所在源文件内的行号,标准C支持,该宏当作整形对待;
__FUNCTION__(或__func__):当前程序行所属的函数名称,C99支持(如:VC++6.0不支持),该宏当作字符串对待;ci
#include <iostream> using namespace std; int main(int argc, char *argv[]) { printf("[%s:%d]%s|%s\n", __FILE__, __LINE__, __FUNCTION__, __func__); return 0; }
执行上述程序将打印: 字符串
[test.cpp:8]main|main
__DATE__:当前文件的编译日期,格式是Mmm:dd:yyyy。该宏当作字符串对待。
__TIME__:当前文件的编译时间,格式是hh:mm:ss。该宏当作字符串对待。get
#include <iostream> using namespace std; int main(int argc, char *argv[]) { printf("DATE:%s|TIME:%s\n", __DATE__, __TIME__); getchar(); return 0; }
执行上述程序将打印:编译器
DATE:Oct 20 2010|TIME:23:33:24
1 "#":替换宏参数时,将其后面的宏参数转换成带引号的字符串,例如:
#define STR(s) #s int main( ) { std::string str = STR(abcdefg); return 0; }
C编译器在预处理代码时,第5行实际翻译成:std::string str = "abcdefg";
2 "##":将该符号先后的两个宏参数链接在一块儿,好比:
#define PRINT(PRINT_FUNNAME, VAR) print_##PRINT_FUNNAME(VAR) int main() { PRINT(common, 5); return 0; }
C编译器在预处理代码时,第5行实际翻译成:print_common(5);
咱们实际看下综合运用的例子:
#include <iostream> using namespace std; #define PRINT(fun, name, var) print_##fun(#name, var) void print_common(const std::string & name, int var) { std::cout << name.c_str() << ":" << var << std::endl; } void print_tofile(const std::string & name, int var) { char sz_temp[1024]; memset(sz_temp, 0, sizeof(sz_temp)); snprintf(sz_temp, sizeof(sz_temp), "%s:%d", name.c_str(), var); FILE * fp = fopen("./log.log", "w"); fwrite(sz_temp, 1, strlen(sz_temp), fp); fclose(fp); } int main() { PRINT(common, age, 5); PRINT(tofile, age, 5); return 0; }