如何在 Visual Studio 6.0 调试器中观察 std::wstring var

发布于 2025-01-02 07:30:11 字数 406 浏览 1 评论 0原文

我得到了

std::string str = "hello world";
std::wstring wstr = L"goodbye world";
std::cout << str << std::endl;
std::wcout << wstr << std::endl;

,当我开始调试并在第三行设置断点时 在 VS 6.0 的调试器“自动”窗口中我得到:

std::cout   {...}
str {0x001f2de1 "hello world"}
wstr    {0x001f2e4a}

并且我看不到 wstr 值...

我如何配置 VS 才能做到这一点?

谢谢

I got

std::string str = "hello world";
std::wstring wstr = L"goodbye world";
std::cout << str << std::endl;
std::wcout << wstr << std::endl;

and when I start debug and set breakpoint at third line
in debugger "Auto" window in VS 6.0 I got:

std::cout   {...}
str {0x001f2de1 "hello world"}
wstr    {0x001f2e4a}

and I can't see wstr value...

How I could configure VS to be able to this??

thanx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

复古式 2025-01-09 07:30:11

此引用来自 VisualStudio 6.0 autoexp.dat:

-------- Unicode --------

如果您的应用程序是为 Unicode 构建的,您将需要 Unicode
自动扩展为文本的字符串,而不是数组
无符号短。要自动将 Unicode 字符串显示为文本,
转到“工具/选项/调试”选项卡并选中“显示 Unicode 字符串”。

因此,在 VisualStudio 6.0 中,您应该转到工具/选项/调试打开“显示 Unicode 字符串”

之后你会看到:

  • std::cout {...}
  • str {0x00441d21“你好世界”}
  • wstr {0x00441cb2“再见世界”}

This quote is from VisualStudio 6.0 autoexp.dat:

------- Unicode -------

If your application is built for Unicode, you'll want Unicode
strings to automatically expand as text, rather than arrays of
unsigned short. To automatically display Unicode strings as text,
go to Tools/Options/Debug tab and check 'Display Unicode strings'.

So in your VisualStudio 6.0 you should go to Tools/Options/Debug and turn on "Display Unicode strings".

After that you will see:

  • std::cout {...}
  • str {0x00441d21 "hello world"}
  • wstr {0x00441cb2 "goodbye world"}
半衾梦 2025-01-09 07:30:11

添加监视:

str._Bx._Ptr

如果字符串少于 16 个字符,那么我们应该监视

str._Bx._Buf

add a watch on:

str._Bx._Ptr

if the string is less than 16 chars then we should watch

str._Bx._Buf

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文