我遇到了 wstringstream 的问题。当我这样做时
std::wstringstream ss;
wchar_t* str = NULL;
ss << str;
应用程序因错误而崩溃
Unhandled exception at 0x53e347af (msvcr100d.dll) in stringstr.exe: 0xC0000005: Access violation reading location 0x00000000.
例如,这很好用:
ss << NULL;
wchar_t* str = L"smth";
ss << &str;
str 并不总是有价值,有时它可能是 NULL,当它为 NULL 时,我想将 0 放入流中。如何解决?