gpt4 book ai didi

c++ - 从逗号分隔的文本文件中创建有意义数据 vector 的最佳方法是什么

转载 作者:太空狗 更新时间:2023-10-29 23:06:06 25 4
gpt4 key购买 nike

考虑以下几点:

我定义了一个类:

class Human
{
public:
std::string Name;
std::string Age;
std::string Weight;

}

我定义了一个 .txt 文件:

Justin,22,170
Jack,99,210
Fred,12,95
etc...

目标是将这个文本文件变成一个 std::vector

我目前的代码如下:

vector<Human> vh;
std::ifstream fin(path);
std::string line;

while(std::getline(fin,line))
{
std::stringstream linestream(line);
std::string value;
Human h;
int IntSwitch = 0;
while(getline(linestream,value,','))
{
++IntSwitch;
try{
switch(IntSwitch)
{
case 1 :
h.Name = value;
break;
case 2:
h.Age = value;
break;
case 3:
h.Weight = value;
vh.push_back(h);
break;


}


}
catch(std::exception ex)
{
std::cout << ex.what() << std::endl;
}
}



}

现在我很好奇是否有任何 c++11 技术或非 c++11 技术比这个更有效/更容易阅读?

最佳答案

我写了一个框架版本,它应该与行基础结构一起工作:

struct Human
{
Human(const std::string& name, const std::string& age, const std::string& weight)
: name_(name), age_(age), weight_(weight) { }

std::string name_;
std::string age_;
std::string weight_;
};

class CSVParser
{
public:
CSVParser(const std::string& file_name, std::vector<Human>& human) : file_name_(file_name)
{
std::ifstream fs(file_name.c_str());
std::string line;
while(std::getline(fs, line))
{
human.push_back(ConstructHuman(line));
}
}
Human ConstructHuman(const std::string& line);


private:
std::string file_name_;

};

Human CSVParser::ConstructHuman(const std::string& line)
{
std::vector<std::string> words;

std::string word;
std::stringstream ss(line);

while(std::getline(ss, word, ','))
{
words.push_back(word);
}
return Human(words[0], words[1], words[2]);
}

int main()
{
std::vector<Human> human;
CSVParser cp("./word.txt", human);

return 0;
}

关于c++ - 从逗号分隔的文本文件中创建有意义数据 vector 的最佳方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16917282/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com