1,定义:
ASSERT()是一个调试程序时经常使用的宏。
assert是验证assert后面的括号里的表达式是否为真的函数,若为假,程序运行的时候就会报错.
2,引用:
#include "stdafx.h"
3,主要方面:
检查指针是否为空;检查数值范围;
4,用例:
BOOL CSerialPort::InitPort(CWnd* pPortOwner, UINT portnr)
{
assert(portnr > 0 && portnr < 5);//在1-4之间
assert(pPortOwner != NULL);//指针不能为空
{
assert(portnr > 0 && portnr < 5);//在1-4之间
assert(pPortOwner != NULL);//指针不能为空
// if the thread is alive: Kill
if (m_bThreadAlive)
{
do
{
SetEvent(m_hShutdownEvent);
} while (m_bThreadAlive);
TRACE("Thread ended\n");
}
if (m_bThreadAlive)
{
do
{
SetEvent(m_hShutdownEvent);
} while (m_bThreadAlive);
TRACE("Thread ended\n");
}
…………
}