我无法让我的程序在函数中读取我的文件

时间:2013-11-15 21:16:54

标签: c++ arrays

我似乎无法弄清楚为什么我的代码没有读取要在交换机案例中使用的数据。当我把它写到一个文件时,它只是扯垃圾。有人可以帮忙吗?

void readData(Name element[], int size)
{
    ifstream infile("treeData.txt");

    int index = 0;
    string line, common, scientific, family;
    int name;

    infile.open("treeData.txt");
    {           
        {
            while((index < size) && (infile >> name >> common >> scientific >> family))
            {
                if(name >= 0 && name <= 100)
                {
                    infile >> element[index].treeID;
                    element[index].treeID = name;
                    infile >> element[index].commonName;
                    element[index].commonName = common;
                    infile >> element[index].scientificName;
                    element[index].scientificName = scientific;
                    infile >> element[index].familyName;
                    element[index].familyName = family;
                    index++;
                    size = index;
                }   
                else
                    cout << "The file was not found!";
            }
        }
    }       
    infile.close();
}

1 个答案:

答案 0 :(得分:2)

您的实现应该利用C ++ IOStreams库的可扩展性功能。您可以创建operator >>的重载,以便任何输入流都可以将数据提取到Name对象中。还建议不要将数据提取到数组中(就像您在readData函数中尝试过的那样),而是将其提取到单个对象中。这样,代码可以构建在此功能之上。它也是一种更合理,更直接的提取方式:

std::istream& operator>>(std::istream& is, Name& n)
{
    if (!is.good())
        return is;

    int id;
    std::string line, common, scientific, family;

    if (is >> id >> common >> scientific >> family)
    {
        if (id >= 0 && id <= 100)
            n.treeID = id;

        n.treeID         = name;
        n.commonName     = common;
        n.scientificName = scientific;
        n.familyName     = family;
    }
    return is;
}

现在我们有了提取器,我们可以继续创建一个Name对象数组,并为每个元素使用提取器:

std::ifstream infile("treeData.txt");
std::array<Name, 5> names;

for (auto name : names)
{
    infile >> name;
}