码迷,mamicode.com
首页 > 其他好文 > 详细

string流

时间:2017-06-24 19:44:28      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:record   str   tor   nbsp   ack   one   streams   phone   turn   

使用 istreamstring 与文本行绑定之后读取元素。

struct PersonInfo
{
    string name;
    vector<string> phones;
};

int main(int argc, char const *argv[])
{
    string line, word;
    vector<PersonInfo> people;
    istringstream record;
    while (getline(cin, line))
    {
        PersonInfo info;

        record.clear();                                      // 在将line拷贝到record中之前,应调用clear()函数来使流复位。保证下一次循环时,流record的正常使用。

        record.str(line);

        //    istringstream record(line)           如果在循环内部,则不需要复位,因为每次循环都会zion个销毁和重新创建istringstream流对象 record!
        record >> info.name;
        while (record >> word)
            info.phones.push_back(word);
        people.push_back(info);
    }
    return 0;
}

string流

标签:record   str   tor   nbsp   ack   one   streams   phone   turn   

原文地址:http://www.cnblogs.com/sanerer/p/7074110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!