我正在使用自定义ifstream类
class plb_ifstream : public Parallel_istream {
public:
plb_ifstream();
explicit plb_ifstream(const char* filename,
std::istream::openmode mode = std::ostream::in );
~plb_ifstream();
virtual std::istream& getOriginalStream();
bool is_open();
void open(const char* filename, std::istream::openmode mode = std::ostream::in);
void close();
bool good();
private:
plb_ifstream(plb_ifstream const& rhs);
plb_ifstream& operator=(plb_ifstream const& rhs);
private:
DevNullBuffer devNullBuffer;
std::istream devNullStream;
std::ifstream *original;
};
这适用于像
这样的单个文件plb_ifstream ifile("geometry.dat");
然而,当我尝试在参数中使用变量(在for循环中),如
for(plint num=1; num<4; num++)
{
std::ostringstream ostr;
ostr <<num<<".dat";
std::string var = ostr.str();
pcout <<"Reading geometry.."<<endl;
plb_ifstream ifile(ostr.str());
ifile >> boolMask;
pcout<<"done..."<<endl;}
我收到以下错误
error: no matching function for call to ‘plb::plb_ifstream::plb_ifstream(std::basic_ostringstream<char>::__string_type)’|
note: candidates are:|
note: plb::plb_ifstream::plb_ifstream(const plb::plb_ifstream&)|
note: no known conversion for argument 1 from ‘std::basic_ostringstream<char>::__string_type {aka std::basic_string<char>}’ to ‘const plb::plb_ifstream&’|
note: plb::plb_ifstream::plb_ifstream(const char*, std::ios_base::openmode)|
note: no known conversion for argument 1 from ‘std::basic_ostringstream<char>::__string_type {aka std::basic_string<char>}’ to ‘const char*’|
note: plb::plb_ifstream::plb_ifstream()|
note: candidate expects 0 arguments, 1 provided|
我确实找到了一些其他解决方案,但他们没有使用ifstream。如果有一个只使用ifstream的工作我会很感激帮助
答案 0 :(得分:2)
您可能需要替换:
plb_ifstream ifile(ostr.str());
与
plb_ifstream ifile(ostr.str().c_str());
获得等效的C字符串
答案 1 :(得分:1)
您还没有编写一个plb_ifstream
构造函数,该构造函数需要std::string
,例如std::ostringstream
.str()
返回的构造函数。追加.c_str()
或添加构造函数。