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



The information in this article applies to:

  • Microsoft CodeView for MS-DOS 4.0
  • Microsoft CodeView for MS-DOS 4.01
  • Microsoft CodeView for MS-DOS 4.1
  • Microsoft CodeView for Windows 4.0
  • Microsoft CodeView for Windows 4.01
  • Microsoft CodeView for Windows 4.1
  • The Visual Workbench Integrated Debugger, when used with:
    • Microsoft Visual C++ 1.0
    • Microsoft Visual C++ 1.5
    • Microsoft Visual C++, 32-bit Professional Edition 2.0

This article was previously published under Q109678

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);
}
				

Modification Type:MajorLast Reviewed:12/1/2003
Keywords:kbBug kbDebug kbfix kbide KB109678