后代类c ++中的istream重载问题

时间:2015-04-27 15:41:02

标签: c++ class overloading operator-keyword descendant

我遇到的问题是我认为我的程序的插入操作符超载。它是初学者c ++类的一个赋值,我应该使用后代函数来执行具有复数和向量的任务。 当我为任一类输入一个数字时,它要么没有正确读入,要么正确分配给数组。我一直在努力解决这个问题超过一个小时,我尝试的任何东西似乎都没有用。

课程:

class pairs
{
protected:
    double a;
    double b;
public: 
    pairs(): a(0), b(0){}
    pairs(const pairs&p): a(p.a), b(p.b){}
    pairs(double x, double y): a(x), b(y){}
    pairs operator +(pairs& second){
        return pairs(a+second.a, b+second.b);
    }
    pairs operator -(pairs& second){
        return pairs(a-second.a, b-second.b);
    }
    bool operator ==(pairs& second){
        bool tf=false;
        if (a==second.a && b==second.b)
            tf=true;
        return tf;
    }
};
class comp:public pairs
{
public:
    comp():pairs(){}
    comp(const pairs&p):pairs(p){}
    comp(double x, double y):pairs(x, y){}
    comp operator *(comp& second){
        comp mew;
        mew.a=(a*second.a)-(b*second.b);
        mew.b=(a*second.b)+(b*second.a);
        return mew;
    }
    comp operator /(comp& second);
    friend ostream& operator << (ostream& fout, comp& num){
        if(num.b<0)
            cout<<num.a<<num.b<<"i";
        else
            cout<<num.a<<"+"<<num.b<<"i";
        return fout;
    }
    friend istream& operator >> (istream& fin, comp num){
        char sym, i;
        cout<<"Enter a complex number in a+bi or a-bi form: ";
        cin>>num.a>>sym>>num.b>>i;
        if(sym=='-')
            num.b*=-1;
        return fin;
    }
};
class vect:public pairs
{
public:
    vect():pairs(){}
    vect(const pairs&p):pairs(p){}
    vect(double x, double y):pairs(x, y){}
    vect operator*(double num){
        return vect(a*num, b*num);
    }
    int operator*(vect num){
        int j;
        j=(a*num.a)+(b*num.b);
        return j;
    }
    friend ostream& operator << (ostream& fout, vect& num){
        cout<<"<"<<num.a<<","<<num.b<<">";
        return fout;
    }
    friend istream& operator >> (istream& fin, vect num){
        char beak, com;
        cout<<"Enter vector in <a,b> form: ";
        cin>>beak>>num.a>>com>>num.b>>beak;
        return fin;
    }
};

对插入运算符的调用如下:

        comp temp;
        int store;
        cin>>temp;
        cout<<"Where do you want to store this (enter 1-6): ";
        cin>>store;
        while(store<1 || store>6)
        {
            cout<<"Invalid location. re-enter: ";
            cin>>store;
        }
        six[store-1]=temp;
        break;

如果你将'comp temp'更改为'vect temp',那么vect也是一样的 将一个comp或vect大小为6的数组传递给函数,这就是为什么six []未显示为声明的原因。

我尝试运行程序并在分配给数组之前打印temp,并且两个值仍然为零,我可能会为此而感到茫然。

非常感谢任何建议。 :

1 个答案:

答案 0 :(得分:0)

您应该使用std::istream&实施中的operator>>()来阅读:

friend istream& operator >> (istream& fin, vect num){
    char beak, com;
    // cout<<"Enter vector in <a,b> form: ";
    fin >> beak >> num.a >> com >>num.b >> beak;
 // ^^^
    return fin;
}

其他operator>>()重载相同。

此外,您还希望在使用重载输入函数之外输出提示(这就是我在上面评论它的原因)。