首页 > 其他 > 详细

利用 __FUNCTION__ 宏打印函数调用信息

时间:2014-01-15 23:56:34      阅读:559      评论:0      收藏:0      [点我收藏+]

 

__FUNCTION__ 宏表示当前所在函数名;

__FILE__ 宏表示当前所在文件路径;

__LING__ 宏表示当前所在行;

利用对象离开函数时调用析构函数销毁的特点,打印出函数执行结束的信息

 

代码:

bubuko.com,布布扣
#include <iostream>
#include <cstdio>

class FunctionCallLogger
{
public:
    FunctionCallLogger(const char* functionName)
    {
        strcpy(m_functionName, functionName);
        printf("%s:  %s Enter!   line:%d \n", __FILE__, m_functionName, __LINE__);
    }
    ~FunctionCallLogger()
    {
        printf("%s   %s Leave!   line:%d \n", __FILE__, m_functionName, __LINE__);
    }
private:
    char m_functionName[256];
};
#define LOG_FUNCTIONCALL FunctionCallLogger(__FUNCTION__);

int main()
{
    LOG_FUNCTIONCALL
    return 0;
}
bubuko.com,布布扣

利用 __FUNCTION__ 宏打印函数调用信息

原文:http://www.cnblogs.com/zuibunan/p/3515965.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!