C++第9周项目1 - 实现复数类中的运算符重载

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8841620

【项目1-Complex类】接第8周项目1,定义Complex类中的<<和>>运算符的重载,实现输入和输出,改造原程序中对运算结果显示方式,使程序读起来更自然。

参考解答:(在VS2008中调试通过,CodeBlocks中有编译错误,见后说明。)

#include <iostream>
using namespace std;
class Complex
{
public:
	Complex(){real=0;imag=0;}
	Complex(double r,double i){real=r;imag=i;}
    //Complex &operator=(Complex &c){real=c.real;imag=c.imag;return *this;}
	Complex operator-();
	//实现输入、输出的运算符重载
	friend ostream& operator<< (ostream& output, Complex& c);
	friend istream& operator>> (istream& input,Complex& c);
	//实现加减乘除的运算符重载
	friend Complex operator+(Complex &c1, Complex &c2);
	friend Complex operator+(double d1, Complex &c2);
	friend Complex operator+(Complex &c1, double d2);
	friend Complex operator-(Complex &c1, Complex &c2);
	friend Complex operator-(double d1, Complex &c2);
	friend Complex operator-(Complex &c1, double d2);
	friend Complex operator*(Complex &c1, Complex &c2);
	friend Complex operator*(double d1, Complex &c2);
	friend Complex operator*(Complex &c1, double d2);
	friend Complex operator/(Complex &c1, Complex &c2);
	friend Complex operator/(double d1, Complex &c2);
	friend Complex operator/(Complex &c1, double d2);
private:
	double real;
	double imag;
};

//实现输出的运算符重载
ostream &operator << (ostream &output, Complex &c)
{
    	output<<"("<<c.real;
	if(c.imag>=0) output<<"+";
	output<<c.imag<<"i)";
	return output;
}

//实现输入的运算符重载
istream& operator >> (istream& input,Complex& c)
{
    	int a,b;
	char sign,i;
	do
	{	cout<<"input a complex number(a+bi或a-bi):";
		input>>a>>sign>>b>>i;
	}
	while(!((sign=='+'||sign=='-')&&i=='i'));
	c.real=a;
	c.imag=(sign=='+')?b:-b;
	return input;
}

Complex Complex::operator-()
{
	return(0.0-*this);
}

//复数相加:(a+bi)+(c+di)=(a+c)+(b+d)i.
Complex operator+(Complex &c1, Complex &c2)
{
	Complex c;
	c.real=c1.real+c2.real;
	c.imag=c1.imag+c2.imag;
	return c;
}
Complex operator+(double d1, Complex &c2)
{
	Complex c0(d1,0),c;
	return c0+c2; //按运算法则计算的确可以,但充分利用已经定义好的代码,既省人力,也避免引入新的错误,但可能机器的效率会不佳
}
Complex operator+(Complex &c1, double d2)
{
	Complex c0(d2,0),c;
	c=c1+c0;
	return c;
}
//复数相减:(a+bi)-(c+di)=(a-c)+(b-d)i.
Complex operator-(Complex &c1, Complex &c2)
{
	Complex c;
	c.real=c1.real-c2.real;
	c.imag=c1.imag-c2.imag;
	return c;
}
Complex operator-(double d1, Complex &c2)
{
	Complex c(d1,0);
	return c-c2;
}
Complex operator-(Complex &c1, double d2)
{
	Complex c(d2,0);
	return c1-c;
}

//复数相乘:(a+bi)(c+di)=(ac-bd)+(bc+ad)i.
Complex operator*(Complex &c1, Complex &c2)
{
	Complex c;
	c.real=c1.real*c2.real-c1.imag*c2.imag;
	c.imag=c1.imag*c2.real+c1.real*c2.imag;
	return c;
}
Complex operator*(double d1, Complex &c2)
{
	Complex c(d1,0);
	return c*c2;
}
Complex operator*(Complex &c1, double d2)
{
	Complex c(d2,0);
	return c1*c;
}

//复数相除:(a+bi)/(c+di)=(ac+bd)/(c^2+d^2) +(bc-ad)/(c^2+d^2)i
Complex operator/(Complex &c1, Complex &c2)
{
	Complex c;
	c.real=(c1.real*c2.real+c1.imag*c2.imag)/(c2.real*c2.real+c2.imag*c2.imag);
	c.imag=(c1.imag*c2.real-c1.real*c2.imag)/(c2.real*c2.real+c2.imag*c2.imag);
	return c;
}
Complex operator/(double d1, Complex &c2)
{
	Complex c(d1,0);
	return c/c2;
}

Complex operator/(Complex &c1, double d2)
{
	Complex c(d2,0);
	return c1/c;
}

int main()
{
	Complex c1,c2,c3,c;
	double d=11;
	cout<<"c1: "<<endl;;
	cin>>c1;
	cout<<"c2: "<<endl;
	cin>>c2;
	cout<<"c1="<<c1<<endl;
	cout<<"c2="<<c2<<endl;
	cout<<"d="<<d<<endl;
	cout<<"-c1="<<(-c1);
	c3=c1+c2;
	cout<<"c1+c2="<<c3<<endl;
	cout<<"c1+d="<<(c1+d)<<endl;
	cout<<"d+c1="<<(d+c1)<<endl;
	c3=c1-c2;
	cout<<"c1-c2="<<c3<<endl;
	cout<<"c1-d="<<(c1-d)<<endl;
	cout<<"d-c1="<<(d-c1)<<endl;
	c3=c1*c2;
	cout<<"c1*c2="<<c3<<endl;
	cout<<"c1*d="<<(c1*d)<<endl;
	cout<<"d*c1="<<(d*c1)<<endl;
	c3=c1/c2;
	cout<<"c1/c2="<<c3<<endl;
	cout<<"c1/d="<<(c1/d)<<endl;
	cout<<"d/c1="<<(d/c1)<<endl;

	return 0;
}

  CodeBlocks中有编译错误发生在第149、152、153、156、157、160、161、164、165行。146、147、151等直接输出复数类对象没有出问题,而问题出在了输出重载的运算结果的输出。这说明不是operator<<()重载有问题,如果将第149行写为:

cout<<"-c1=";
Complex c=-c1;
cout<<c;

  问题解决,其他地方类似。

  曾经怀疑是否是在复制构造函数上出现问题,但排除了这种可能。难道是CodeBlocks中编译器新版本中的新要求,不而知。先发在此处等读者在评价中指点吧。

时间: 2024-10-25 09:17:39

C++第9周项目1 - 实现复数类中的运算符重载的相关文章

C++第8周(春)项目1 实现复数类中的运算符重载

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目1]实现复数类中的运算符重载(1)请用类的成员函数,定义复数类重载运算符+.-.*./,使之能用于复数的加减乘除 class Complex { public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r; imag=i;} Complex operator+(C

C++第9周项目3 - 实现分数类中的运算符重载

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8841620 [项目3-分数类]接第8周项目3,定义分数类中<<和>>运算符重载,实现分数的输入输出,改造原程序中对运算结果显示方式,使程序读起来更自然. 参考解答: #include <iostream> #include <C

C++第9周项目2 - 实现时间类中的运算符重载

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8841620 [项目2-Time类]接第8周项目2,定义Time类中的<<和>>运算符重载,实现时间的输入输出,改造原程序中对运算结果显示方式,使程序读起来更自然. 参考解答: #include <iostream> using nam

《C++语言基础》实践参考——复数类中的运算符重载(续)

返回:贺老师课程教学链接 项目要求 [项目1-复数类中的运算符重载(续)]在复数类中的运算符重载基础上(1)再定义一目运算符 -,-c相当于0-c.(2)定义Complex类中的<<和>>运算符的重载,实现输入和输出,改造原程序中对运算结果显示方式,使程序读起来更自然.[参考解答] #include <iostream> using namespace std; class Complex { public: Complex() { real=0; imag=0; }

C++第8周(春)项目2 实现Time类中的运算符重载

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目2-Time类中的运算符重载]实现Time类中的运算符重载 class CTime { private: unsigned short int hour; // 时 unsigned short int minute; // 分 unsigned short int second; // 秒 public: CTime(int h=0,i

第8周-任务3-实现分数类中的运算符重载

[题目]实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).求反.比较(6种关系)的运算. class CFraction { private: int nume; // 分子 int deno; // 分母 public: //构造函数及运算符重载的函数声明 }; //重载函数的实现及用于测试的main()函数 [参考解答] #include <iostream> using namespace std; class CFraction { private: int

第8周-任务2-实现Time类中的运算符重载

[题目]实现Time类中的运算符重载 下面是给出的参考代码 #include <iostream> using namespace std; class CTime { private: unsigned short int hour; // 时 unsigned short int minute; // 分 unsigned short int second; // 秒 public: CTime(int h=0,int m=0,int s=0); void setTime(int h,in

C++第8周项目3 - 分数类中的运算符重载

课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565,本周题目链接:http://blog.csdn.net/sxhelijian/article/details/8806111 [项目3-分数类中的运算符重载]实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).求反.比较(6种关系)的运算.可以从第5周项目2的代码开始工作. class CFraction {private: int nume; /

C++第8周(春)项目3 分数类中的运算符重载

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目3-分数类中的运算符重载]实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).比较(6种关系)的运算.可以以第5周项目2的代码为基础开始工作. class CFraction { private: int nume; // 分子 int deno; // 分母 public: //构造函数及运算符重载的函数声明 }