ostringstream是一个未定义的类型?

时间:2012-01-20 06:05:56

标签: c++ string stream iostream ostringstream

在我的C ++项目中,我正在尝试这样做:

 std::ostringstream stream(std::ostringstream::out);

但是我收到了一个错误:

error C2027: use of undefined type 'std::basic_ostringstream<_Elem,_Traits,_Alloc>'

我已经包含了iostream和ostream库,所以我不确定为什么它将ostringstream视为未定义...

1 个答案:

答案 0 :(得分:7)

std::ostringstream<sstream>中定义。 <iostream>仅包含转发声明,而<ostream>根本没有帮助。