2.如何用好ASSERT宏让ASSERT更好用(定制自己的Assert)

我们可以自己定义一个宏,让宏接受2个参数,其中一个参数是判断的条件,另外一个是弹出的调试信息。

#include <assert.h>
#include <string.h>
#define Assert(a,b) assert(a&&b)
int _tmain(int argc, _TCHAR* argv[])
{
	Assert(0,"Nvidia_insides'Blog");
}

当然,这些只是简单的使用assert,我们要更好的使用assert宏,我们就要定制自己的assert。

#include <assert.h>
#include <string.h>
#include <Windows.h>
bool CustomAssertFunction(bool isfalse,char* description,char* filepath,int line)//Assert执行的函数
{
	if(true == isfalse)
		return false;
	printf("需要调试的位置为 %s 中的 %d 行\n",filepath,line);
	if(IDOK== MessageBoxA(0,description,"Assert调试",MB_OKCANCEL))
		return true;
	else return false;
}
#if defined( _DEBUG )//如果在debug模式
//定义assert宏,用if判断是否进行{ int 3 }调试
#define Assert(exp,description) \
	if(CustomAssertFunction(int(exp),description,__FILE__, __LINE__)) \
{_asm{int 3}}
#else
#define Assert(exp,description)
#endif
int _tmain(int argc, _TCHAR* argv[])
{
	Assert(1,"Nvidia_insides'Blog");
}



怎么样,很神奇吧~!





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值