ostringstream给了我隐式实例化错误

时间:2013-04-23 10:30:46

标签: c++ string

我正在尝试this answer中提供的优雅解决方案,但无论我尝试什么,我都无法通过此行的错误Implicit instantiation of undefined template

std::ostringstream strs;

我需要做什么?我已经包括以下内容,我肯定是有点过分了。作为第二个问题,似乎很难找到确切需要包含在ostringstream中的内容:

#include <iostream>
#include <fstream>
#include <iosfwd>
#include <ios>

1 个答案:

答案 0 :(得分:47)

stringstream类在sstream标题中定义,所以写

#include <sstream>

一切都会好的。