gpt4 book ai didi

c++ - 如何将字符串复制到指针数组的元素?

转载 作者:行者123 更新时间:2023-11-28 07:33:56 25 4
gpt4 key购买 nike

我有一个指向字符串类的指针数组,我需要将文件中的一行复制到每个指针中,但我不确定该怎么做。

void Document::loadFile(string iFileExt){
ioFile = new fstream(iFileExt.c_str(), ios::in);
int i = 0;
string row;
string *content;

if (ioFile->fail()){
cerr << "File failed to open for read" << endl;
exit(69);
}

while(ioFile->good()){ // this loop is just to know how may rows are in the file
getline (*ioFile, row);
i++;
}

content = new string[i]; // I allocate memory dynamically so that the numbers of
ioFile->seekg(0); // pointer is the same as the number of rows
i = 0;

while(ioFile->good()){
getline (*ioFile, *content[i]); //this is the tricky part
i++;
}
ioFile->close();
}

提前感谢您提供给我的任何帮助或提示! :-)

最佳答案

为什么你的不起作用:

getline (*ioFile, *content[i]);  //this is the tricky part
^^^
// You have an extra dereference above

它应该只是:

getline (*ioFile, content[i]);

你应该怎么做:

std::ifstream f(filename);
std::vector<std::string> lines;
for(std::string temp; std::getline(f, temp); lines.push_back(std::move(temp)));

注意:这里不需要清理。 ifstream 自行关闭。 vector 删除它分配的内容。这是将文件行作为字符串获取的更小、更高效的代码。

关于c++ - 如何将字符串复制到指针数组的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17119243/

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