使用VS實現(xiàn)C/C++ Debug函數(shù)(宏)
參考了網(wǎng)上的現(xiàn)成案例,使用自帶的__FILE__等宏,實現(xiàn)debug函數(shù)。(rx前綴為個人標識)
__FILE__默認會包含代碼文件的絕對路徑。如果要去掉路徑,需要修改設置。

#ifndef _RX_DebugBasic_H_
#define _RX_DebugBasic_H_
//是否開啟debug打印 包含_RX_DEBUG_則開啟debug打印,反之關(guān)閉
#ifdef _RX_DEBUG_
const unsigned int RX_DEBUG_FLAG = true;
#else
const unsigned int RX_DEBUG_FLAG = false;
#endif // _RX_DEBUG_
#include"RX_NormalStdBasic.h"//此處替換成stdio.h或者包含stdio.h的文件
#define rx_debug(argc,...) \
do{ \
????if(true == RX_DEBUG_FLAG) \
????{ \
????????printf("\r\nRX_debug[file:%s][func:%s][line:%d]=> ", __FILE__, __func__, __LINE__); \
????????printf(argc, ##__VA_ARGS__); \
????} \
}while(0)
#endif // !_RX_DebugBasic_H_
去除文件名的路徑


實際效果:

輸出:
