私は得た
std::string str = "hello world";
std::wstring wstr = L"goodbye world";
std::cout << str << std::endl;
std::wcout << wstr << std::endl;
そして、デバッグを開始し、VS 6.0 のデバッガーの「自動」ウィンドウの 3 行目にブレークポイントを設定すると、次のようになりました。
std::cout {...}
str {0x001f2de1 "hello world"}
wstr {0x001f2e4a}
wstr値が表示されません...
これができるようにVSを構成するにはどうすればよいですか??
ありがとう