在我的 C++ 项目中,我正在尝试这样做:
std::ostringstream stream(std::ostringstream::out);
但我收到一个错误:
error C2027: use of undefined type 'std::basic_ostringstream<_Elem,_Traits,_Alloc>'
我已经包含了 iostream 和 ostream 库,所以我不确定它为什么将 ostringstream 视为未定义...
在我的 C++ 项目中,我正在尝试这样做:
std::ostringstream stream(std::ostringstream::out);
但我收到一个错误:
error C2027: use of undefined type 'std::basic_ostringstream<_Elem,_Traits,_Alloc>'
我已经包含了 iostream 和 ostream 库,所以我不确定它为什么将 ostringstream 视为未定义...