在C ++中,如何使用字符串初始化声明的istringstream?
example.hpp
#include <sstream>
class example{
private:
istringstream _workingStream;
public:
example();
}
example.cpp
example::example(){
this->_workingStream("exampletext");
}
错误
错误:与“(std :: istringstream {aka std :: basic_istringstream})(const char [8])”的调用不匹配
答案 0 :(得分:2)
要构造一个类成员,您需要使用class member initialization list。一旦进入构造函数的主体,所有的类成员都将被构造,您所能做的就是分配给他们。要使用成员初始化列表,您需要将构造函数更改为
example::example() : _workingStream("exampletext") {}