C/C++的一些预定义宏

摘要:C/C++中有一些预定义宏,同过这些宏可以使得调试更加方便
关键字:  C/C++,预定义宏,__FILE__, __LINE__, __DATE__,__TIME__,__func__,__FUNCTION__

__FILE__:当前源代码文件名的字符串文字

__LINE__:当前源代码中的行号的整数常量

__DATE__:进行预处理的日期(“Mmm dd yyyy”形式的字符串文字)

__TIME__:源文件编译时间,格式微“hh:mm:ss”

__func__:当前所在函数名,在C++中为__FUNCTION__

C++的测试代码如下(g++),其中VC中不支持__func__ :

 1:  #include 
    
 2:  using namespace std;
 3:  
 4:  #ifndef __func__
 5:  #define __func__  (__FUNCTION__)
 6:  #endif
 7:  
 8:  void func()
 9:  {
10:      cout<<"func name is:"<<__func__<<endl;    
11:      cout<<"func name is:"<<__FUNCTION__<<endl;    
12:  }
13:  
14:  int main()
15:  {
16:      cout<<"date is :"<<__DATE__<<endl;
17:      cout<<"time is :"<<__TIME__<<endl;
18:      cout<<"file is :"<<__FILE__<<endl;
19:      cout<<"line is :"<<__LINE__<<endl;
20:  
21:      func();
22:  }

你可能感兴趣的:(C/C++的一些预定义宏)