Поделиться через


CDumpContext::DumpAsHex

Dumps the specified type formatted as hexadecimal numbers.

CDumpContext& DumpAsHex( 
   BYTE b 
);
CDumpContext& DumpAsHex( 
   DWORD dw 
);
CDumpContext& DumpAsHex( 
   int n 
);
CDumpContext& DumpAsHex( 
   LONG l 
);
CDumpContext& DumpAsHex( 
   LONGLONG n 
);
CDumpContext& DumpAsHex( 
   UINT u 
);
CDumpContext& DumpAsHex( 
   ULONGLONG n 
);
CDumpContext& DumpAsHex( 
   WORD w 
);

Возвращаемое значение

A reference to a CDumpContext object.

Заметки

Call this member function to dump the item of the specified type as a hexadecimal number. To dump an array, call CDumpContext::HexDump.

Пример

#if _DEBUG
   afxDump.DumpAsHex(115);      
#endif

Требования

Header: afx.h

См. также

Основные понятия

CDumpContext Class

CDumpContext Members

Hierarchy Chart

CDumpContext::operator <<