ostream << 课堂上超载的粉碎

ostream << overloading crush in class

本文关键字:lt 课堂 ostream 超载      更新时间:2023-10-16

当我在我的复数类中声明ostream<<重载方法时,它突然崩溃了在这里

#include<math.h>
#include<ostream>
#include<iostream>
class complex
{
public:
    double getRe();
    double gerIm();
    void setRe(double value);
    void setIm(double value);
    explicit complex(double=0.0,double=0.0);
    static complex fromPolar(double radius,double angle);
    complex operator+(complex rhs);
    complex operator-(complex rhhs);
    complex operator*(complex rhs);
    complex operator+(double rhs);
    complex operator-(double rhs);
    complex operator*(double rhs);
    complex conjugate();
    double norm();
    complex operator/(double rhs);
    complex operator/(complex rhs);
     friend ostream &operator<<(ostream &out, complex c);
private:
    double real;
    double img;
};
 ostream &operator<<(ostream &out, complex c)
{
    out<<c.real<<"  ";
    out<<c.img<<"  ";
    return out;

}
complex operator+(double lhs,complex rhs);
complex operator-(double lhs,complex rhs);
complex operator*(double lhs,complex rhs);
complex operator/(double lhs,complex rhs);
complex exp(complex c);
inline double complex::getRe(){return real;}
inline double complex::gerIm(){ return img;}
inline void complex::setRe(double value) {  real=value;}
inline void complex::setIm(double value) { img=value;}
 inline complex::complex(double re,double im) :real(re),img(im){}
 inline   complex complex::fromPolar(double radius,double angle){
     return complex(radius*cos(angle),radius*sin(angle));
 }
 inline complex complex::operator+(complex rhs)
 {
     return complex(this->real+rhs.real,this->img+rhs.img);
 }
 inline complex complex::operator-(complex rhs)
 {
     return complex(this->real-rhs.real,this->img-rhs.img);
 }
 inline complex complex::operator*(complex rhs)
 {
     return complex(this->real*rhs.real-this->img*rhs.img,this->real*rhs.img+this->img*rhs.real);
 }
 inline complex complex::operator+(double rhs)
 {
     return complex(this->real+rhs,this->img);
 }
 inline complex complex::operator-(double rhs)
 {
     return complex(this->real-rhs,this->img);
 }
 inline complex complex::operator*(double rhs)
 {
     return complex(this->real*rhs,this->img*rhs);
 }
 inline complex complex::operator/(double rhs)
 {
     return complex(this->real/rhs,this->img/rhs);
 }
 inline complex complex::operator/(complex rhs)
 {
     return (*this)*rhs.conjugate()/rhs.norm();

 }
 inline double complex::norm()
 {
 return (this->real*this->real+this->img*this->img);
 }
 inline complex complex::conjugate()
 {
     return complex(this->real,-this->img);
 }

 inline complex operator+(double lhs,complex rhs)
 {
     return rhs+lhs;
 }
 inline complex operator-(double lhs,complex rhs)
 {
     return complex(lhs-rhs.getRe(),rhs.gerIm());
 }
 inline complex operator*(double lhs,complex rhs)
 {
     rhs*lhs;
 }
 inline complex operator/(double lhs,complex rhs)
 {
     return rhs.conjugate()*lhs/rhs.norm();
 }

错误说,是ostream运算符的重新定义,但我觉得我写的没错,所以看不懂是怎么回事,请帮帮我

ostream位于std命名空间中,因此在类定义中需要:

friend std::ostream &operator<<(std::ostream &out, complex c);

相应的定义应如下所示:

std::ostream &operator<<(std::ostream &out, complex c)
{
// ...

此外,您需要在其中一个operator*重载中使用 return 语句:

inline complex operator*(double lhs,complex rhs)
{
    return rhs*lhs;
}

由于在代码中使用与标准库类模板相同的名称,因此不应使用 using namespace std; 。(即使不是这种情况,在大多数情况下也应该避免using namespace std;,当然也应该避免在头文件中使用它。

如果您按照查尔斯·贝利所说的做了,但仍然收到错误,请确保在文件顶部包含iostream。