c标准中一些预定义的宏,如-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 230954
  • 博文数量: 51
  • 博客积分: 235
  • 博客等级: 入伍新兵
  • 技术积分: 25
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-16 23:16
文章分类

全部博文(51)

文章存档

2016年(3)

2015年(35)

2014年(12)

2013年(1)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: linux

2015-10-11 17:21:24

原文地址: 作者:

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) |
0

上一篇:

下一篇:ubuntu中如何将终端添加到右键

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图