共用方式為


afxDump (CDumpContext 在 MFC 中)

提供在應用程式中的基本物件傾印功能。

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

需求

標頭: afx.h

請參閱

參考

CObject::Dump

AfxDump (MFC)

概念

MFC 巨集和全域變數