Linux中国论坛's Archiver

悬非 发表于 2007-7-22 10:51

__FILE__,__LINE__,FUNCTION__实现代码跟踪调试(linux下c语言编程

[color=#295200][size=14pt][b]__FILE__,__LINE__,FUNCTION__实现代码跟踪调试(linux下c语言编程 )[/b][/size][/color]                                                                                                           先看下简单的初始代码:注意其编译运行后的结果。

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 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"
        #define DEBUGARGS __FILE__,__LINE__,__FUNCTION__
#endif
root@xuanfei-desktop:~/cpropram/2# cat funca.c
#include "global.h"
int funca(void)
{
printf (DEBUGFMT " this is function\n",DEBUGARGS);
return 0;
}
root@xuanfei-desktop:~/cpropram/2# cat funcb.c
#include "global.h"
int funcb(void)
{
printf (DEBUGFMT " this is function\n",DEBUGARGS);
return 0;
}
root@xuanfei-desktop:~/cpropram/2# cat main.c
#include "global.h"
int main(int argc, char **argv)
{
    printf(DEBUGFMT "this is main\n", DEBUGARGS);
    funca();
    printf(DEBUGFMT "this is main\n", DEBUGARGS);
    funcb();
    printf(DEBUGFMT "this is main\n", DEBUGARGS);
    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)-mainthis is main
funca.c(4)-funca this is function
main.c(6)-mainthis is main
funcb.c(4)-funcb this is function
main.c(8)-mainthis is main
root@xuanfei-desktop:~/cpropram/2#

这就是通过定义__FILE__,__LINE__,FUNCTION__的宏来简单实现代码的跟踪调试:)

如上内容根据周立发linux视频教程所做的笔录,为了方便大家理解,建议大家可以到下面的连接下载观看。
[size=2][color=#0001ff][url=http://blog.chinaunix.net/u/29321/showart_343791.html][size=10pt]周立发 linux 视频教程下载(不定期持续更新)[/size][/url][/color][/size][color=#ff0102][font=monospace]
[/font][/color][color=#ff0102]如以上内容有误或有不足之处,望朋友能给予意见或者建议!谢谢:)web log: xuanfei.cublog.cn

[/color][color=#ff0102]
[/color]

[[i] 本帖最后由 悬非 于 2007-7-22 11:15 编辑 [/i]]

函w昵 发表于 2008-9-3 11:38

两地的爱情,就剩下手机和网上免费打电话,还能坚持多久?

我们联系的方式只剩下手机和一款叫KC的[url=http://www.keepc.com/free.htm/]网上免费打电话[/url]软件。当我生病时,想他给点温暖,可惜亲爱的他不在你身边;当我受挫折时,想要被他抱抱,亲爱的他不在我身边;当我孤独寂寞时,想要他陪陪,可惜亲爱的他依然不在我的身边……

chrislena 发表于 2008-9-4 01:20

正如楼主所言

[size=2]正如楼主所言[/size]
[size=2]这个[url=http://www.mmovp.com/buy-cd-key-nexon-game-card-c-1268_1273.html]nexon cash[/url] [url=http://www.mmovp.com/buy-maple-story-maple-story-items-c-136_1326.html]maplestory items[/url]和[url=http://www.mmovp.com/buy-cd-key-nexon-game-card-c-1268_1273.html]nx cash[/url] [url=http://www.mmovp.com/buy-maple-story-c-136.html]maplestory mesos[/url]都是很不错的。

gwgold 发表于 2008-10-10 15:23

MMORG GOLD On Sale!

MMORG GOLD On Sale!
[url=http://www.guildwarsgoldmoney.com]http://www.guildwarsgoldmoney.com[/url]
[url=http://www.guildwarsgoldmoney.com/guildwars-gold.htm]http://www.guildwarsgoldmoney.com/guildwars-gold.htm[/url]
[url=http://www.guildwarsgoldmoney.com/guildwars-items.htm]http://www.guildwarsgoldmoney.com/guildwars-items.htm[/url]
[url=http://www.guildwarsgoldmoney.com/tibia-gold.htm]http://www.guildwarsgoldmoney.com/tibia-gold.htm[/url]
[url=http://www.guildwarsgoldmoney.com/wow-gold.htm]http://www.guildwarsgoldmoney.com/wow-gold.htm[/url]
[url=http://www.guildwarsgoldmoney.com/wow-gold-us.htm]http://www.guildwarsgoldmoney.com/wow-gold-us.htm[/url]
[url=http://www.guildwarsgoldmoney.com/runescape-gold.htm]http://www.guildwarsgoldmoney.com/runescape-gold.htm[/url]
[url=http://www.tibiaitem.com]http://www.tibiaitem.com[/url]
[url=http://www.tibiaitem.com/tibia-items.htm]http://www.tibiaitem.com/tibia-items.htm[/url]
[url=http://www.tibiaitem.com/tibia-gold.htm]http://www.tibiaitem.com/tibia-gold.htm[/url]
[url=http://www.tibiaitem.com/site-map.htm]http://www.tibiaitem.com/site-map.htm[/url]
[url=http://www.tibiaitem.com/powerleveling.htm]http://www.tibiaitem.com/powerleveling.htm[/url]
[url=http://www.tibiamoney.com/]http://www.tibiamoney.com/[/url]
[url=http://www.tibiamoney.com/tibia-gold.htm]http://www.tibiamoney.com/tibia-gold.htm[/url]
[url=http://www.tibiamoney.com/tibia-guide.htm]http://www.tibiamoney.com/tibia-guide.htm[/url]
[url=http://www.gamezmoney.com/tibia-gold.htm]http://www.gamezmoney.com/tibia-gold.htm[/url]
[url=http://www.gamezmoney.com/Age-of-Conan-Gold-EU.htm]http://www.gamezmoney.com/Age-of-Conan-Gold-EU.htm[/url]
[url=http://www.gamezmoney.com/Age-of-Conan-Gold-us.htm]http://www.gamezmoney.com/Age-of-Conan-Gold-us.htm[/url]
[url=http://www.gamezmoney.com/dofus-kamas.htm]http://www.gamezmoney.com/dofus-kamas.htm[/url]
[url=http://www.gamezmoney.com/eve-online-ISK-Piece.htm]http://www.gamezmoney.com/eve-online-ISK-Piece.htm[/url]
[url=http://www.gamezmoney.com/maple-story-mesos.htm]http://www.gamezmoney.com/maple-story-mesos.htm[/url]
[url=http://www.gamezmoney.com/wow-gold-us.htm]http://www.gamezmoney.com/wow-gold-us.htm[/url]
[url=http://www.gamezmoney.com/wow-gold-eu.htm]http://www.gamezmoney.com/wow-gold-eu.htm[/url]
[url=http://www.gamezmoney.com/knight-gold.htm]http://www.gamezmoney.com/knight-gold.htm[/url]
[url=http://www.gamezmoney.com/ffxi-gil.htm]http://www.gamezmoney.com/ffxi-gil.htm[/url]
[url=http://www.gamezmoney.com/silkroad.htm]http://www.gamezmoney.com/silkroad.htm[/url]
[url=http://www.gamezmoney.com/runescape-gold.htm]http://www.gamezmoney.com/runescape-gold.htm[/url]
[url=http://www.gamezmoney.com/Runescape-power-leveling.htm]http://www.gamezmoney.com/Runescape-power-leveling.htm[/url]
[url=http://www.gamezmoney.com/lotro-gold-eu.htm]http://www.gamezmoney.com/lotro-gold-eu.htm[/url]
[url=http://www.gamezmoney.com/lotro-gold-us.htm]http://www.gamezmoney.com/lotro-gold-us.htm[/url]
[url=http://www.10minget.com/tibia.htm]http://www.10minget.com/tibia.htm[/url]
[url=http://www.10minget.com/dofus.htm]http://www.10minget.com/dofus.htm[/url]
[url=http://www.10minget.com/tibia-gold.htm]http://www.10minget.com/tibia-gold.htm[/url]
[url=http://www.10minget.com/gw.htm]http://www.10minget.com/gw.htm[/url]
[url=http://www.10minget.com/eve.htm]http://www.10minget.com/eve.htm[/url]
[url=http://www.10minget.com/eq2.htm]http://www.10minget.com/eq2.htm[/url]
[url=http://www.10minget.com/ffxi.htm]http://www.10minget.com/ffxi.htm[/url]
[url=http://www.10minget.com/maple.htm]http://www.10minget.com/maple.htm[/url]
[url=http://www.10minget.com/runescape.htm]http://www.10minget.com/runescape.htm[/url]
[url=http://www.10minget.com/lotro-eu.htm]http://www.10minget.com/lotro-eu.htm[/url]
[url=http://www.10minget.com/lotro-us.htm]http://www.10minget.com/lotro-us.htm[/url]
[url=http://www.10minget.com/wow-eu.htm]http://www.10minget.com/wow-eu.htm[/url]
[url=http://www.10minget.com/wow-us.htm]http://www.10minget.com/wow-us.htm[/url]
[url=http://www.rs15min.com]http://www.rs15min.com[/url]
[url=http://www.rs15min.com/rsgp.htm]http://www.rs15min.com/rsgp.htm[/url]
[url=http://www.rs15min.com/rsyew.htm]http://www.rs15min.com/rsyew.htm[/url]
[url=http://www.rs15min.com/rs-power-leveling.htm]http://www.rs15min.com/rs-power-leveling.htm[/url]
[url=http://www.rs15min.com/rs-gold-uk-gbp.htm]http://www.rs15min.com/rs-gold-uk-gbp.htm[/url]
[url=http://www.runescape100m.com]http://www.runescape100m.com[/url]
[url=http://www.runescape100m.com/runescape-gold.htm]http://www.runescape100m.com/runescape-gold.htm[/url]
[url=http://www.runescape100m.com/rs-gold-uk.htm]http://www.runescape100m.com/rs-gold-uk.htm[/url]
[url=http://www.runescape100m.com/rs-item.htm]http://www.runescape100m.com/rs-item.htm[/url]
[url=http://www.runescape100m.com/runescape-powerleveling.htm]http://www.runescape100m.com/runescape-powerleveling.htm[/url]
[url=http://www.runescapego.com]http://www.runescapego.com[/url]
[url=http://www.runescapego.com/rs.htm]http://www.runescapego.com/rs.htm[/url]
[url=http://www.runescapego.com/gw.htm]http://www.runescapego.com/gw.htm[/url]
[url=http://www.runescapego.com/weu.htm]http://www.runescapego.com/weu.htm[/url]
[url=http://www.runescapego.com/wus.htm]http://www.runescapego.com/wus.htm[/url]
[url=http://www.runescapego.com/wus.htm]http://www.runescapego.com/wus.htm[/url]
[url=http://www.runescapego.com/dofus.htm]http://www.runescapego.com/dofus.htm[/url]
[url=http://www.runescapego.com/rings.htm]http://www.runescapego.com/rings.htm[/url]

页: [1]

Powered by Discuz! Archiver 6.1.0  © 2001-2007 Comsenz Inc.