FIX: CodeView/Visual Workbench Can't Watch static const Member

Last reviewed: September 18, 1997
Article ID: Q109678
1.00 1.50 | 1.00 2.00
WINDOWS   | WINDOWS NT
kbtool kbfixlist kbbuglist

The information in this article applies to:

  • Microsoft CodeView for MS-DOS, versions 4.0, 4.01, and 4.1
  • Microsoft CodeView for Windows, versions 4.0, 4.01, and 4.1
  • Microsoft CodeView for Win32s, version 4.25
  • The Visual Workbench Integrated Debugger, included with:

        - Microsoft Visual C++ for Windows, versions 1.0 and 1.5
        - Microsoft Visual C++, 32-bit Edition, versions 1.0 and 2.0
    

SYMPTOMS

If you try to watch a static const member of a class in CodeView or the Visual Workbench debugger by placing a watch on classname::member, the debugger will display the error

   CXX0030 expression not evaluatable

-or-

   CXX0017 expression cannot be evaluated

or it will show invalid information. Also, if you try to watch the class that contains the static const member and expand the class to look at the members, the debugger will not display the correct information for the static const member.

RESOLUTION

You can work around this by making the member variable static and not const, or by setting a watch on an instance of the class. For example, set the watch on scmemGlobal.scInt in the sample code below.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was corrected in Visual C++ version 2.1.

Sample Code

/* Compile options needed: /Zi /Od
*/

#include <stdio.h>

class CSCMember { public:
    static const int scInt;
    static int sInt;
    const int cInt;
public:
    CSCMember () : cInt(4) {};
};

const int CSCMember::scInt= 2;

int CSCMember::sInt= 3;

CSCMember scmemGlobal;

void main ()
{
    /*
    The first line prints the correct value, but you cannot
    watch the variable in the debugger by placing a watch on
    CSCMember::scInt or by watching the members of scmemGlobal.
    */
    printf ("static const member= %d\n", scmemGlobal.scInt);
    printf ("static member= %d\n", scmemGlobal.sInt);
    printf ("const member= %d\n", scmemGlobal.cInt);
}


Additional reference words: 4.00 4.10 1.00 1.10 1.50 2.00
KBCategory: kbtool kbfixlist kbbuglist
KBSubcategory: WBDebug
Keywords : WBDebug kbbuglist kbfixlist kbtool
Version : 1.00 1.50 | 1.00 2.00
Platform : NT WINDOWS
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 18, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.