Predefined Macros

一、ANSI C标准预定义宏
 
__LINE__:在源代码中插入当前源代码行号;
__FILE__:在源文件中插入当前源文件名;
__DATE__:在源文件中插入当前的编译日期
__TIME__:在源文件中插入当前编译时间;
__STDC__:当要求程序严格遵循ANSI C标准时该标识被赋值为1,表明是标准的C程序;

 

#include <iostream>
using namespace std;

int main(int argc,char *argv[])
{
	#if defined(__cplusplus) || defined(c_plusplus)
		printf("this is c++\n");
	#endif

	cout <<"FILE="<<__FILE__<<endl<<"LINE="<<__LINE__<<endl<<"DATE=" \
		<<__DATE__<<endl<<"TIME="<<__TIME__<<endl;

	system("PAUSE");
    return 0;
}


运行结果:

Predefined Macros

 

 

二、其他,参见MSDN

http://msdn.microsoft.com/query/dev10.query?appId=Dev10IDEF1&l=ZH-CN&k=k(__FILE__);k(DevLang-%22C%2B%2B%22)&rd=true

 

你可能感兴趣的:(macros,Predefined)