程序运行如何得到当前函数信息(C\C++)

程序运行如何得到当前函数信息(C\C++)

调试时打印运行代码所在源文件、行号、函数名
使用宏

亲测可用

FILE 文件名

LINE 行号

FUNCTION 函数名

即可

void my_free(void* p, const char* file, const char* fun, int line)
{
     
    if (p != NULL)
    {
     
        puts("current file and function:");
        puts(__FILE__);
        puts(__FUNCTION__);
        printf("line:%d/n", __LINE__);
        puts("error frome file and function:");
        puts(file);
        puts(fun);
        printf("line:%d/n", line);
    }
    else
    {
     
       /* free(p);
        free_count++;*/
    }
}
//在函数体(你所调试的函数体)中添加此代码
char* s =  "afg";
    my_free(s, __FILE__, __FUNCTION__, __LINE__);
    getchar(); //这个方法是只运行到这里就结束了,你要想知道多个函数的信息就把这行注释掉

你可能感兴趣的:(单元测试,c++,单元测试,c语言)