我有
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 才能做到这一点?
谢谢