具有向量成员的结构的istream

时间:2013-07-09 10:21:02

标签: c++

我不太清楚istream是如何使用标准输入的(例如cin>>来自键盘)  对于具有向量成员的结构。 我有一个带有double,string和vector成员的简单结构。我想从cin读取结构,并用cout打印它们。我重载了<<和>>运营商,这是我的代码:

    #include <iostream>
#include <vector>
#include <string>
using namespace std;


struct Test {
    double d;
    string s;
    vector<int>vi;
    Test():d(0.0),s(string()),vi(0)     
    {}
    Test(double d1,string s1,vector<int>vi1):d(d1),s(s1),vi(vi1)    
    {}
};

istream &operator>>(istream &is, vector<int>&v)
{
    int x;
    cout<<"type the vector<int>elements :"<<endl;
    while (is>>x)
        v.push_back(x);
    is.clear();
    return is;
}

ostream &operator<<(ostream &os, vector<int>&v)
{
    os<<"[ ";
    for (int i=0;i<v.size();i++)
        os<<v[i]<<" ";
    os<<" ]";
    return os;
}

istream &operator>>(istream &is, Test &t)
{
    cout<<"type the double d value: ";
    is>>t.d;
    cout<<"type the string s value: ";
    is.ignore();                    //call ignore before getline
    getline(is,t.s);
    //int x;
    //cout<<"type the vector elements:"<<endl;  //try to use the vector<int> istream operator
    //while (true) {
    //  if (is.eof()==1) break;
    //  t.vi.push_back(x);
    //}
    //is.clear();
    is>>t.vi;
    is.clear();
    return is;
} 


ostream &operator<<(ostream &os, Test &t) 
{
    os<<"{ ";
    os<<t.d<<" , "<<t.s<<" , ";
    os<<t.vi;
    os<<" }"<<endl;
    return os;
}

int main()
{
    Test test1;
    while (cin>>test1)
        cout<<test1;


}

我在while (cin>>test1) cout<<test1主要阅读和打印结构。 但是,一旦从cin读取第二个结构,我就会得到以下内容:

./testin
type the double d value: 1.0
type the string s value: 1st struct string
type the vector<int>elements :
1
1
1
{ 1 , 1st struct string , [ 1 1 1  ] }
type the double d value: 2.0
type the string s value: 2nd struct string
type the vector<int>elements :
2
2
2
{ 2 , 2nd struct string , [ 1 1 1 2 2 2  ] }
type the double d value:

向量混合,加上我无法用CTRL + d停止输入 我可以阅读并打印单个结构,如果我在主cin>>test1;cout<<test1; 我经常寻找一个合适的解决方案,但我没有设法解决它。

非常感谢先进的任何帮助。

snek

1 个答案:

答案 0 :(得分:1)

添加“点按键继续” 并将test1 var放在循环中应防止“向量混合”

    do  {
     Test test1;
    cin >> test1;
    cout << test1;
    } while (getchar() == 'c')