#include <vector>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <string>
#include <fstream>
#include <stdlib.h>
using namespace std;
•
• //main func declaration etc...
•
//Vectors for storing information from file
vector<string> include;
vector<string> exclude;
string temp; //for storing whatever the stream is on
int len = atoi(puzzle_file >> temp); //first pos
int width = atoi(puzzle_file >> temp); //second pos
上述代码应该读入文件并将数字存储在相应的整数中。我收到了一条错误消息,指出&#34;没有匹配功能来拨打&#39; atoi&#39;&#34;,即使我有#include&lt; \ cstdlib&gt;和#include&lt; \ stdlib.h&gt;在我的文件标题中。不确定从这里去哪里。对stackoverflow和其他论坛进行了一些研究,无法找到真正帮助我的东西。有什么建议?感谢
答案 0 :(得分:1)
答案 1 :(得分:0)
puzzle_file >> temp
表达式返回istream
,但没有atoi
重载可以接受这样的参数。
您应该致电atoi(temp.c_str());
答案 2 :(得分:0)
你试图跳过一条指令而丢失了。 puzzle_file >> temp
返回puzzle_file
而非temp
。因此,您将atoi
应用于转换为bool的输入流。使用:
int len, width;
puzzle_file >> len >> width;
if (! puzzle_file)...