c标准中一些预定义的宏
c标准中指定了一些预定义的宏,对于编程经常会用到。下面这个表中就是一些常常用到的预定义宏。
宏
意义
__date__
进行预处理的日期(“mmm dd yyyy”形式的字符串文字)
__file__
代表当前源代码文件名的字符串文字
__line__
代表当前源代码中的行号的整数常量
__time__
源文件编译时间,格式微“hh:mm:ss”
__func__
当前所在函数名
对于__file__,__line__,__func__这样的宏,在调试程序时是很有用的,因为你可以很容易的知道程序运行到了哪个文件的那一行,是哪个函数。
下面一个例子是打印上面这些预定义的宏的。
#include
#include
void why_me();
int main()
{
printf( "the file is %s.\n", __file__ );
printf( "the date is %s.\n", __date__ );
printf( "the time is %s.\n", __time__ );
printf( "this is line %d.\n", __line__ );
printf( "this function is %s.\n", __func__ );
why_me();
return 0;
}
void why_me()
{
printf( "this function is %s\n", __func__ );
printf( "the file is %s.\n", __file__ );
printf( "this is line %d.\n", __line__ );
}
打印信息:
the file is debug.c.
the date is jun 6 2012.
the time is 09:36:28.
this is line 15.
this function is main.
this function is why_me
the file is debug.c.
this is line 27.
阅读(1311) | 评论(0) | 转发(0) |