gpt4 book ai didi

c++ - 将字符串和数字读取到 vector C++

转载 作者:行者123 更新时间:2023-11-27 22:41:30 34 4
gpt4 key购买 nike

当我的文件 s2.txt 看起来像我该怎么办

ID 1 (string) 
22 30 30 4 2 4 5 7 5 3 ......................................(a few lines
of numbers)
ID 2
30 4 2 1 2 ................................. (other lines of numbers)

我想将数字保存到 vector ,但它不起作用:

void readFromFile (){
ifstream file("s2.txt");
if( file.good() == true )
cout << "open" << endl;
else
cout << "denied" << endl;

int m=0;
while(!file.eof()) {
string ID;
int qual;
vector <int> quality;
getline(file,ID);
while (file>>qual) {
quality.push_back(qual);
cout<<quality[m]<<endl;
m++;
}
}
file.close();
}
}

main () {
readFromFile();
}

当我点击“运行”时,只有一串数字被保存到 vector 中(对于 ID1)。

附言。阅读 ID 不重要。

最佳答案

你应该把每一行读成一个字符串。然后检查“ID”字符串。如果在一行的位置 0 找到“ID”字符串,则将该行作为 ID 行读取,否则,将该行作为整数行读取。

关于c++ - 将字符串和数字读取到 vector C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48620975/

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