标签:code 运行 line 函数名 class bsp 信息 print nbsp
简单的说,__LINE__可以获取当前代码的函数,结合__FUNCTION__可以打印调试信息,比如函数出错时运行的函数名,及行号,例如
1 #define p_err_fun do{printf("[E: %d.%03d] ", os_time_get()/1000, os_time_get()%1000);printf("%s err in %d\n", __FUNCTION__, __LINE__); printf("\r\n");}while(0)
标签:code 运行 line 函数名 class bsp 信息 print nbsp
原文地址:http://www.cnblogs.com/10cm/p/6612773.html