AfxDump (MFC)

调用此函数,当在调试器转储对象的状态时,在调试时。

void AfxDump(
   const CObject* pOb 
); 

参数

  • pOb
    对于从 CObject派生的类的对象的指针。

备注

AfxDump 调用对象的 Dump 成员函数并将信息发送到 afxDump 变量指定的位置。 AfxDump 仅在 MFC 的调试版本。

您的程序代码不应调用, AfxDump,而应调用相应的对象的 Dump 成员函数。

要求

Header: afx.h

请参见

参考

CObject::Dump

afxDump (在MFC的CDumpContext)