afxDump (在MFC的CDumpContext)

在应用程序中提供基本的对象转储的功能。

CDumpContext afxDump;

备注

afxDump 是允许您 CDumpContext 信息发送到调试输出窗口或为调试时间预定义的 CDumpContext 对象。通常,您提供 afxDump 作为参数提供 CObject::Dump

在 Windows NT 和 windows 下的所有版本中,在调试应用程序时,, afxDump 输出发送到调试输出窗口 Visual C++。

此变量在 MFC 的调试版本仅定义。有关 afxDump的更多信息,请参见 调试 MFC 应用程序

示例

// example for afxDump
CPerson* pMyPerson = new CPerson;
// set some fields of the CPerson object...
//..
// now dump the contents
#ifdef _DEBUG
afxDump << _T("Dumping myPerson:\n");
pMyPerson->Dump(afxDump);
afxDump << _T("\n");
#endif

要求

Header: afx.h

请参见

参考

CObject::Dump

AfxDump (MFC)

概念

MFC宏和Globals