网站大量收购闲置独家精品文档,联系QQ:2885784924

FILELINEFUNCTION的宏.docx

  1. 1、本文档共5页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
__FILE__,__LINE__,FUNCTION__的宏(转载)?? 2010-03-12 16:28:43|??分类:  HYPERLINK /xiaowei_3927577/blog/ \l m=0t=1c=fks_087070087084084069082081081095086083087070084086084068 \o C语言 C语言 |??标签: |字号大中小?订阅 __FILE__,__LINE__,FUNCTION__实现代码跟踪调试( HYPERLINK /; \t _self linux下c语言编程 )先看下简单的初始代码:注意其编译运行后的结果。 root@xuanfei-desktop:~/cpropram/2# cat global.h //头文件 #ifndef CLOBAL_H ??????? #define GLOBAL_H ??????? #include stdio.h ??????? int funca(void); ??????? int funcb(void); #endif root@xuanfei-desktop:~/cpropram/2# cat funca.c //函数a #include global.h int funca(void) { printf (this is function\n); return 0; } root@xuanfei-desktop:~/cpropram/2# cat funcb.c //函数b #include global.h int funcb(void) { printf (this is function\n); return 0; } root@xuanfei-desktop:~/cpropram/2# gcc -Wall funca.c funcb.c main.c //联合编译 root@xuanfei-desktop:~/cpropram/2# ./a.out //运行 this is main this is  HYPERLINK /; \t _self function this is main this is function this is main 相同结果很难让人看出那里出错,下面我们用用 __FILE__,__LINE__,__FUNCTION__加入代码,看看有什么区别吗. 把 __FILE__,__LINE__,__FUNCTION__加入到mail.c中 root@xuanfei-desktop:~/cpropram/2# cat main.c #include global.h int main(int argc, char **argv) { ??? printf(%s(%d)-%s: this is main\n,__FILE__,__LINE__,__FUNCTION__); ??? funca(); ??? printf(%s(%d)-%s: this is main\n,__FILE__,__LINE__,__FUNCTION__); ??? funcb(); ??? printf(%s(%d)-%s: this is main\n,__FILE__,__LINE__,__FUNCTION__); ??? return 0; } root@xuanfei-desktop:~/cpropram/2# gcc -Wall funca.c funcb.c main.c root@xuanfei-desktop:~/cpropram/2# ./a.out main.c(4)-main: this is main this is function main.c(6)-main: this is main this is function main.c(8)-main: this is main 上面的结果main.c(4)-main:this is main 表示在mian.c源代码的第四行main函数里边打印出来的 this is main 那样的话就很方便的让程序员对自己的程序进行排错! 为了更方便的使用它我们可以通过在global.h代码中进行宏定义 root@xuanfei-desktop:~/cpropram/2# cat global.h #ifndef CLOBAL_H ??????? #define GLOBAL_H ??????? #include stdio.h ??????? int funca(void); ??????? int funcb(void); ??????? #define DEBUGFMT? %s(%d)-%s ??????? #d

文档评论(0)

ktj823 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档