BUG: Debugger Shows Incorrect "this" PointerLast reviewed: July 24, 1997Article ID: Q143109 |
The information in this article applies to:
SYMPTOMSIn Visual C++ 4.0, when you debug a class that uses multiple inheritance, the "this" pointer for any of the base classes that reside at an offset in the class are displayed incorrectly. Data for derived classes is not displayed correctly either because the debugger attempts to reference the data by using the invalid "this" pointer. In Visual C++ 4.1 or 4.2, only the value of "this" pointer is not shown correctly. All the members are displayed correctly.
CAUSEThe compiler produces incorrect debugging information causing a display error in the debugger only. The vtable entries themselves are correct, and programmatic access to the data produces the proper values.
RESOLUTIONThe only way to work around this problem is to output the addresses to an output device. You may use a TRACE statement or cout() as shown in the sample code below.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Sample Code to Demonstrate Problem
/* This code demonstrates the problem. Compile options needed: none */ #include <iostream.h> // Class defenitions class A { protected: int aint; public: virtual void fA(void) = 0; }; class B { protected: int bint; public: virtual void fB(void) = 0; }; class AB : public A, public B { protected: int abint; public: virtual void fAB(void); }; class DAB : public AB { protected: int dabint; public: DAB() {aint = 1; bint = 2; abint = 3; dabint = 4;} void fA(void) { cout << "DAB::fA - this=" << this << endl; } void fB(void) { // The "this" pointer will be displayed incorrectly in the // locals window during the execution of this function. The // address displayed in the output window will still be correct. cout << "DAB::fB - this=" << this << endl; // The base class member variables "aint" and "bint" will be // displayed incorrectly in the locals window, but the derived // class member variables "abint" and "dabint" will be // incorrect. All will show correct values in the final output. cout << "aint: " << aint << " bint: " << bint << " abint: " << abint << " dabint: " << dabint << endl; } }; void AB::fAB(void) { cout << "AB::fAB - this=" << hex << this << endl; fA(); fB(); } void main() { DAB dab; dab.fAB(); } void AB::fAB(void) { cout << "AB::fAB - this=" << hex << this << endl; fA(); fB(); } void main() { DAB dab; dab.fAB(); } |
Keywords : CLIss vcbuglist400 vcbuglist500 WBDebug
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |