gpt4 book ai didi

c++ - 具有未知变量类型的文件的最佳数据结构

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:50:31 27 4
gpt4 key购买 nike

我的程序读入一个文件,该文件是程序名称列表,后跟一个逗号和该程序的命令行参数列表。我想单独存储每一行​​,以便我可以对它们进行排序,然后再运行它们。我遇到的问题是试图围绕将信息存储为什么来思考。我想制作一个结构或类,但我不知道命令行参数是什么或者会有多少。例如,文件的第一行可能是 notepad.exe, test.txt,下一行可能是 myprogram.exe, 10 2000。存储未知数量的未知数据类型的争论的最佳方式是什么?

谢谢

最佳答案

您可以将每个应用程序名称存储为 std::map 的键,将参数存储为 std::vector

std::map<std::string, std::vector<std::string>> apps;
std::ifstream infile("apps.txt");

std::string line;
while (std::getline(infile, line))
{
std::string appName = getEverythingBeforeComma(line);
std::vector<std::string> arguments = getEverythingAfterCommaAndSplitBySpace(line);

apps[appName] = arguments;
}

关于c++ - 具有未知变量类型的文件的最佳数据结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16655227/

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