如果任何成员变量存储对象,则可以使用 ASSERT_VALID 宏测试它们的内部有效性(如果它们的类重写了 AssertValid)。例如,考虑 CMyData 类,该类在其成员变量之一中存储了一个 CObList。 CObList 变量m_DataList 存储了一个 CPerson 对象的集合。 CMyData 的简化声明如下所示:...
打印、判断后如果是FALSE的话断言警告、对ASSERT的进一步实现、打印
ASSERT(pSender== NULL || !m_viewList.IsEmpty());//must have views if sent by one of them POSITION pos=GetFirstViewPosition();while(pos !=NULL) { CView* pView =GetNextView(pos); ASSERT_VALID(pView);if(pView !=pSender)pView->OnUpdate(pSender, lHint, pHint);} } ... voidCView::...
ASSERT( pObject1->IsKindOf( RUNTIME_CLASS( CPerson ) ) ); TheASSERTmacro produces no code in the Release version. If you need to evaluate the expression in the Release version, use theVERIFYmacro instead of ASSERT. MFC ASSERT_VALID and CObject::AssertValid ...
MFC 定义ASSERT宏检查断言。 它还定义了MFC ASSERT_VALID和 CObject::AssertValid方法可以检查内部状态的 CObject-派生的对象。 如果MFC 的参数ASSERT宏计算结果为零或假,宏将暂停程序执行并警告用户 ; 否则,执行继续。 当断言失败时,一个消息对话框显示的源文件和行号声明的名称。 如果您选择重试在对话框中,对的...
ASSERT_VALID(pDC); #ifdef _DEBUGif(m_nMapMode ==MM_NONE) { TRACE0("Error: must call SetScrollSizes() or SetScaleToFitSize()"); TRACE0("\tbefore painting scroll view.\n");br />ASSERT(FALSE);return; }#endif//_DEBUG 可见如果m_nMapMode是0(在构造函数中被默认置为0)的话将在调试程序的...
valida la integridad de este objeto.Copia virtual void AssertValid( ) const; ComentariosAssertValid realiza una comprobación de validez en este objeto comprobando su estado interno.En la versión de depuración de la biblioteca, AssertValid puede validar y finalizar así el programa con un ...
1、意思是:在 xxx 之前 应输入表达式。2、下面为C语言的错误大全及中文解释:1: Ambiguous operators need parentheses — 不明确的运算需要用括号括起 2: Ambiguous symbol xxx — 不明确的符号 3: Argument list syntax error — 参数表语法错误 4: Array bounds missing — 丢失数组界限符 5: ...
PmReturn_t retval;int16_tlength;C_ASSERT(pobj != C_NULL);C_ASSERT(*r_pitem != C_NULL);C_ASSERT(OBJ_GET_TYPE(pobj) == OBJ_TYPE_SQI);/* * Raise TypeError if sequence iterator's object is not a sequence * otherwise, the get sequence's length ...
void CAge::AssertValid() const { CObject::AssertValid(); ASSERT(m_years > 0); ASSERT(m_years < 105); } Para obter outro exemplo, consulte AfxDoForAllObjects.RequisitosCabeçalho: afx.hConsulte tambémReferênciaClasse CObjectGráfico de hierarquiaOut...