afxDump(MFC 中的 CDumpContext)
在应用程序中提供基本对象转储的功能。
CDumpContext afxDump;
备注
afxDump 是一个预定义的 CDumpContext 对象允许您发送 CDumpContext 信息到调试器输出窗口或终端。 通常,您将提供 afxDump 作为 CObject::Dump 的参数。
在 Windows NT 和 Windows 下任何版本中,当您调试应用程序时, afxDump 输出将被发送到 Visual C++输出调试窗口。
此变量仅在 MFC 调试版本中定义。 有关 afxDump的更多信息,请参见 Debugging MFC Applications(调试 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
要求
头文件: afx.h