简体   繁体   English

将文件中的数据读取到结构中并将结构添加到向量(以创建结构向量)

[英]Read data from a file into struct and add struct to a vector (to create a vector of structs)

This question has been asked before but the other question/answers used concepts I'm not yet familiar with in C++.这个问题之前已经被问过,但其他问题/答案使用了我在 C++ 中还不熟悉的概念。

I need to read data from a file into a vector of structs.我需要将文件中的数据读取到结构向量中。

I have the following code but I'm confused about what to put in (....), that is if I have the correct logic.我有以下代码,但我对要输入的内容感到困惑(....),也就是说,如果我有正确的逻辑。

#include <iostream>
#include <string>
#include <fstream>
#include <vector>

struct Parts{
        std::string partNum;
        char partClass;
        int stock;
        float cost;
};

bool readFile(std::vector <Parts>&);
int displayMenu();

int main(){
        std::vector <Parts> pVector;

        readFile(pVector);

        if (!readFile(pVector)){
                std::cout << "Error reading file!" << std::endl;
        }
        else{
                displayMenu();
        }
        return 0;
}

bool readFile(std::vector <Parts> &pVector){
        std::ifstream inputFile("parts.txt");
        if (inputFile.fail()){
                std::cout << "Error reading file!" << std::endl;
                return false;
        }
        else{
                while (....){
                        pVector.emplace_back(....);
                }
                return true;
        }
}

Sample lines from the file:文件中的示例行:

P-42936 A 18 129.79
P-43179 A 47 35.60
P-43264 B 31 103.81
P-43367 B 5 32.39
P-43378 A 46 6.38
P-43622 A 10 155.36

You want that:你想要那个:

bool readFile(std::vector <Parts> &pVector){
  std::ifstream inputFile("parts.txt");

  if (inputFile.fail()){
    std::cout << "Error reading file!" << std::endl;
    return false;
  }
  else {
    Parts part;

    while (inputFile >> part.partNum >> part.partClass >> part.stock >> part.cost)
      pVector.emplace_back(part);
    return true;
  }
}

In main you call two time the read function:main中,您调用两次读取 function:

 readFile(pVector); if (!readFile(pVector)){

very probably the first call must be removed很可能必须删除第一个电话

It can be also interesting to define the operator >> for Parts rather than to have the code doing that in readFileParts定义operator >>而不是让代码在readFile中执行此操作也很有趣

So:所以:

#include <iostream>
#include <string>
#include <fstream>
#include <vector>

struct Parts{
  std::string partNum;
  char partClass;
  int stock;
  float cost;
};

std::istream & operator >>(std::istream & is, Parts & part) {
  if (is >> part.partNum >> part.partClass >> part.stock)
    is >> part.cost;

  return is;
}

bool readFile(std::vector <Parts>&);
//int displayMenu();

int main(){
  std::vector <Parts> pVector;

  if (!readFile(pVector)){
    std::cout << "Error reading file!" << std::endl;
  }
  else{
    //displayMenu();
    // to check, of course operator << can be defined too
    for (auto p : pVector)
      std::cout << p.partNum << '/' << p.partClass << '/' << p.stock << '/' << p.cost << std::endl;
  }
  return 0;
}

bool readFile(std::vector <Parts> &pVector){
  std::ifstream inputFile("parts.txt");

  if (inputFile.fail()){
    std::cout << "Error reading file!" << std::endl;
    return false;
  }
  else {
    Parts part;

    while (inputFile >> part)
      pVector.emplace_back(part);
    return true;
  }
}

Compilation and execution:编译和执行:

pi@raspberrypi:/tmp $ g++ -Wall r.cc
pi@raspberrypi:/tmp $ cat parts.txt 
P-42936 A 18 129.79
P-43179 A 47 35.60
P-43264 B 31 103.81
P-43367 B 5 32.39
P-43378 A 46 6.38
P-43622 A 10 155.36
pi@raspberrypi:/tmp $ ./a.out
P-42936/A/18/129.79
P-43179/A/47/35.6
P-43264/B/31/103.81
P-43367/B/5/32.39
P-43378/A/46/6.38
P-43622/A/10/155.36
pi@raspberrypi:/tmp $ 

I suggest adding overloads for operator>> and operator<< :我建议为operator>>operator<<添加重载:

#include <iostream>
#include <string>
#include <vector>

struct Part {            // I renamed it because it only holds info about one part
    std::string partNum;
    char partClass;
    int stock;
    float cost;
};

std::istream& operator>>(std::istream& is, Part& p) {
    return is >> p.partNum >> p.partClass >> p.stock >> p.cost;
}

std::ostream& operator<<(std::ostream& os, const Part& p) {
    return os << p.partNum << ' ' << p.partClass << ' ' << p.stock << ' ' << p.cost;
}

This makes extracting or printing one Part easy:这使得提取或打印一个Part变得容易:

bool readFile(std::vector<Part>& pVector){
    std::ifstream inputFile("parts.txt");
    if(inputFile) {
        Part tmp;
        while(inputFile >> tmp)        // extract one Part at a time using operator>>
            pVector.emplace_back(tmp);
        return true;
    } else {
        std::cout << "Error reading file!" << std::endl;
        return false;
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM