我正在尝试将包含字典单词的文本文件的行加载到数组对象中。我想要一个数组来保存所有以“a”开头的单词,另一个单词用于“b”...表示字母表中的所有字母。
这是我为数组对象编写的类。
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
class ArrayObj
{
private:
string *list;
int size;
public:
~ArrayObj(){ delete list;}
void loadArray(string fileName, string letter)
{
ifstream myFile;
string str = "";
myFile.open(fileName);
size = 0;
while(!myFile.eof())
{
myFile.getline(str, 100);
if (str.at(0) == letter.at(0))
size++;
}
size -= 1;
list = new string[size];
int i = 0;
while(!myFile.eof())
{
myFile.getline(str, 100);
if(str.at(0) == letter.at(0))
{
list[i] = str;
i++;
}
}
myFile.close();
}
};
我收到一条错误说:
2 IntelliSense: no instance of overloaded function "std::basic_ifstream<_Elem, _Traits>::getline [with _Elem=char, _Traits=std::char_traits<char>]" matches the argument list d:\champlain\spring 2012\algorithms and data structures\weeks 8-10\map2\arrayobj.h 39
我想这需要我重载getline函数,但我不太清楚如何去做或为什么有必要。
有什么建议吗?
答案 0 :(得分:6)
处理std :: string的流的函数不是istream的成员函数,而是像这样使用的自由函数。 (成员函数版本处理char *)。
std::string str;
std::ifstream file("file.dat");
std::getline(file, str);
值得注意的是,有更好的更安全的方法来做你想做的事情:
#include <fstream>
#include <string>
#include <vector>
//typedeffing is optional, I would give it a better name
//like vector_str or something more descriptive than ArrayObj
typedef std::vector<std::string> > ArrayObj
ArrayObj load_array(const std::string file_name, char letter)
{
std::ifstream file(file_name);
ArrayObj lines;
std::string str;
while(std::getline(file, str)){
if(str.at(0)==letter){
lines.push_back(str);
}
}
return lines;
}
int main(){
//loads lines from a file
ArrayObj awords=load_array("file.dat", 'a');
ArrayObj bwords=load_array("file.dat", 'b');
//ao.at(0); //access elements
}
不要重新发明轮子;结账向量,他们是标准的,将为您节省大量的时间和痛苦。
最后尽量不要将using namespace std
放入由于我不会进入的各种原因而导致的不好的情况;而是用std ::前缀std对象,所以像std :: cout或std :: string。
http://en.cppreference.com/w/cpp/container/vector http://en.cppreference.com/w/cpp/string/basic_string/getline http://en.cppreference.com/w/cpp/string