24

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

std::ostringstream strs;

我需要做什么?我已经包括了以下内容,我敢肯定这是矫枉过正的。作为第二个问题,似乎很难找到 ostringstream 究竟需要包含哪些内容:

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

1 回答 1

59

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

#include <sstream>

一切都会好起来的。

于 2013-04-23T10:31:29.847 回答