我遇到了我认为是我的程序的插入运算符重载的问题。这是针对初学者 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 的数组被传递到函数中,这就是为什么不显示为 6[] 的原因。
我尝试在将程序分配给数组之前运行程序并打印温度,并且两个值仍然为零,我不知道为什么会这样。
任何意见是极大的赞赏。:]