我正在尝试this answer中提供的优雅解决方案,但无论我尝试什么,我都无法通过此行的错误Implicit instantiation of undefined template
:
std::ostringstream strs;
我需要做什么?我已经包括以下内容,我肯定是有点过分了。作为第二个问题,似乎很难找到确切需要包含在ostringstream中的内容:
#include <iostream>
#include <fstream>
#include <iosfwd>
#include <ios>
答案 0 :(得分:47)
stringstream
类在sstream
标题中定义,所以写
#include <sstream>
一切都会好的。