时间:2021-05-20
在项目开发工程中,如果能确定哪个文件下的哪个函数下的哪行出错--即锁定错误,那该多好啊,该文章就是为此而作的。
首先来了解一下文件默认的输出信息的函数吧:
文件信息函数:
复制代码 代码如下:
printf("line : %d\n", __LINE__); //当前行数
printf("filename : %s\n", __FILE__); //当前文件名
printf("function : %s\n", __FUNCTION__); //当前函数
printf("time : %s\n", __TIME__); //当前时间
printf ("date : %s\n", __DATE__); //当前日期
输出:
line : 10
filename : test.c
function : main.c
time : 14:13:51
date : Oct 13 2012
理论已足,那就来看看如何锁定错误吧:
一、源文件:
复制代码 代码如下:
[root@localhost for_test]# cat erroutput.c
#include <stdio.h>
#include <assert.h>
#define _DEBUG(msg...) printf("[ %s,%s, %d ]=>",__FILE__, __FUNCTION__, __LINE__); printf(msg);printf("\r\n")
#define _ERROR(msg...) printf("[ error: %s, %d]=>", __FILE__, __LINE__);printf(msg); printf("\r\n")
#define _ASSERT(exp) \
do {\
if (!(exp)) {\
printf( "[ %s ] ",#exp);printf("\r\n");\
assert(exp);\
}\
} while (0)
int main(void)
{
char *p = NULL;
_DEBUG("DEBUG!");
_ERROR("ERROR!");
_ASSERT(NULL != p);
return 0;
}
二、输出:
复制代码 代码如下:
[root@localhost for_test]# gcc erroutput.c
[root@localhost for_test]# ./a.out
[ erroutput.c,main, 17 ]=>DEBUG!
[ error: erroutput.c, 18]=>ERROR!
[ NULL != p ]
a.out: erroutput.c:19: main: Assertion `((void *)0) != p' failed.
已放弃
TI处理:
复制代码 代码如下:
#ifdef DEBUG
#define DBG(fmt, args...) printf("Debug " fmt, ##args)// ##运算符用于把参数连接到一起。预处理程序把出现在##两侧的参数合并成一个符号。
#else
#define DBG(fmt, args...)
#endif
#define ERR(fmt, args...) printf("Error " fmt, ##args)
[root@localhost for_test]# cat debug_err.c
#include <stdio.h>
//#define DEBUG
int main(void)
{
DBG("xxxx\n");
ERR("xxxx\n");
return 0;
}
[root@localhost for_test]# ./a.out
Error xxxx
#ifdef __DEBUG
#define DBG(fmt, args...) fprintf(stderr,"Encode Debug: " fmt, ## args)
#else
#define DBG(fmt, args...)
#endif
#define ERR(fmt, args...) fprintf(stderr,"Encode Error: " fmt, ## args)
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
C语言可以调用python,C如何调用python呢?调用后如何调试呢?小编与大家分享操作经验。(一)C语言调用python首先,C语言中调用python,要使
成成最近用到C语言了,之前比较喜欢用在vscode上面用python调试,今天我参考了一些文章,也尝试了下在vscode上配置c语言的调试,其中包含一些相关的基
断言和用户提供的消息C++语言支持可帮助您调试应用程序的三个错误处理机制:#error指令、static_assert关键字和assert(CRT)宏。所有的三
本文实例讲述了TP5(thinkPHP5框架)实现显示错误信息及行号功能的方法。分享给大家供大家参考,具体如下:在程序调试的过程中,想要调试显示详细的错误信息,
异常(exception)是C++语言引入的错误处理机制。它采用了统一的方式对程序的运行时错误进行处理,具有标准化、安全和高效的特点。C++为了实现异常处理,引