Visual Studio 每当我从其可执行文件调试一个简单的 windows 应用程序时,观看 Window 显示 EClass

Visual Studio Watch Window show WClass whenever I debug a simple windows application from its execuatble

这是使用 WinApi
仅显示 window 的代码 作为参考,此代码来自 here.

#include <windows.h>

const char g_szClassName[] = "myWindowClass";

// Step 4: the Window Procedure
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    switch(msg)
    {
        case WM_CLOSE:
            DestroyWindow(hwnd);
        break;
        case WM_DESTROY:
            PostQuitMessage(0);
        break;
        default:
            return DefWindowProc(hwnd, msg, wParam, lParam);
    }
    return 0;
}

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpCmdLine, int nCmdShow)
{
    WNDCLASSEX wc;
    HWND hwnd;
    MSG Msg;

    //Step 1: Registering the Window Class
    wc.cbSize        = sizeof(WNDCLASSEX);
    wc.style         = 0;
    wc.lpfnWndProc   = WndProc;
    wc.cbClsExtra    = 0;
    wc.cbWndExtra    = 0;
    wc.hInstance     = hInstance;
    wc.hIcon         = LoadIcon(NULL, IDI_APPLICATION);
    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
    wc.lpszMenuName  = NULL;
    wc.lpszClassName = g_szClassName;
    wc.hIconSm       = LoadIcon(NULL, IDI_APPLICATION);

    if(!RegisterClassEx(&wc))
    {
        MessageBox(NULL, "Window Registration Failed!", "Error!",
            MB_ICONEXCLAMATION | MB_OK);
        return 0;
    }

    // Step 2: Creating the Window
    hwnd = CreateWindowEx(
        WS_EX_CLIENTEDGE,
        g_szClassName,
        "The title of my window",
        WS_OVERLAPPEDWINDOW,
        CW_USEDEFAULT, CW_USEDEFAULT, 240, 120,
        NULL, NULL, hInstance, NULL);

    if(hwnd == NULL)
    {
        MessageBox(NULL, "Window Creation Failed!", "Error!",
            MB_ICONEXCLAMATION | MB_OK);
        return 0;
    }

    ShowWindow(hwnd, nCmdShow);
    UpdateWindow(hwnd);

    // Step 3: The Message Loop
    while(GetMessage(&Msg, NULL, 0, 0) > 0)
    {
        TranslateMessage(&Msg);
        DispatchMessage(&Msg);
    }
    return Msg.wParam;
}

然后我在 Visual Studio 2019 中打开可执行文件:

cl -Zi example.cpp user32.lib
devenv example.exe

当我 运行 使用 F5 时,我在手表中得到了这个 Window:

NAME = WClass
VALUE = Unable to evaluate the expression. Operation not supported. Unknown error: 0x80070057.

将鼠标悬停在 VALUE 上时,我得到了:The value for this item is stale due to a problem that occurred while evaluating it.
将鼠标悬停在刷新按钮上时,我得到以下信息:The value of this expression may be incorrect. It could not be evaluated because: "
但是,当我在 Visual Studio 中打开 Windows 应用程序项目并转储此代码时,不会出现此问题。在那种情况下,当我构建解决方案时,Watch Window 是空的。

PS: 程序 运行 正常,但我很好奇为什么 WClass 出现在 Watch Window.

watch window 本身不会做任何事情。用户必须输入符号或表达式才能激活它。

如果您的手表 window 显示名称为 WClass 的条目,那么这就是您输入的条目。根据您提供的代码,不存在具有该名称的符号,因此调试器无法对其求值。

如果这让您感到害怕,只需删除您手表中的条目 window。完成后,切换到 Autos and Locals window。无论如何,这可能就是您要找的东西。