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

I can't get my program to read my file in a function

本文关键字:我的 函数 读取 文件 程序      更新时间:2023-10-16

我似乎无法弄清楚为什么我的代码没有读取要在开关情况下使用的数据。当我把它写到一个文件中时,它只是拉起垃圾。谁能帮忙?

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();
}

您的实现应利用 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;
}