我使用重载的插入运算符将一些字符串存储在文本文件中。
ostream & operator << (ostream & obj,Person & p)
{
stringstream ss;
ss << strlen(p.last) << p.last << strlen(p.first) << p.first
<< strlen(p.city) << p.city << strlen(p.state) << p.state;
obj << ss.str();return obj;
}
文件内容如下所示
4bill5gates7seattle10washington
我现在需要首先读取长度并显示字符串。并继续显示所有字符串。如何使用重载的提取运算符执行此操作?
答案 0 :(得分:1)
一次读取一个字符并使用std::string::push_back
附加到字符串变量。有一个std::stoi
会将您的字符串长度转换为整数。我建议你在创建文本文件时在整数长度之后放一个空格,然后只需cin >> string_length
并避免使用if
语句控制何时找到数字的结尾,或新字符串的开头。
此外,如果您向我们展示了您的尝试,那将更有益,以便我们可以更具体地帮助您。
答案 1 :(得分:1)
您可以这样做:
#include <iomanip>
#include <iostream>
#include <sstream>
#include <vector>
int main() {
std::istringstream in("4bill5gates7seattle10washington");
std::vector<std::string> strings;
unsigned length;
while(in >> length) {
std::string s;
if(in >> std::setw(length) >> s)
strings.push_back(s);
}
for(const auto& s : strings)
std::cout << s << '\n';
}
免责声明:文件格式是邪恶的。
注意:这不会提取“人物”,而是提取字段。我把它留给你。
答案 2 :(得分:-1)
像这样operator <<
ostream & operator >> ( ostream & obj, Person & p )
{
obj << strlen( p.last ) << " " << p.last << " " << strlen( p.first ) << " " << p.first << " "
<< strlen( p.city ) << " " << p.city << " " << strlen( p.state ) << " " << p.state;
return obj;
}
和operator >>
喜欢这个
istream & operator >> ( istream & obj, Person & p )
{
obj >> p.last >> p.first >> p.city >> p.state;
return obj;
}