c++作业,设计一个复数类和矩阵类,求大神指点!!!感激不尽

c++作业,求大神指点!!!感激不尽... c++作业,求大神指点!!!感激不尽 展开
 我来答
百度网友fc027fc
2015-02-26 · TA获得超过1.1万个赞
知道大有可为答主
回答量:3160
采纳率:83%
帮助的人:792万
展开全部
# include <iostream>
using namespace std;
class my_complex {
private:
int real;
int imag;
public:
my_complex();
my_complex(int real, int imag);
~my_complex();
my_complex(const my_complex& rhs);
my_complex& operator=(const my_complex& rhs);
my_complex& operator+(const my_complex& rhs);
bool operator==(const my_complex& rhs);
friend ostream &operator<<(ostream& output, const my_complex &rhs);
};
my_complex::my_complex() :
real(0), imag(0) {
}
my_complex::my_complex(int real, int imag) :
real(real), imag(imag) {
}
my_complex::my_complex(const my_complex& rhs) {
real = rhs.real;
imag = rhs.imag;
}
my_complex& my_complex::operator +(const my_complex& rhs) {
real = rhs.real + real;
imag = rhs.imag + imag;
return *this;
}
//需要处理自我赋值(还好,因为这里没有动态内存的分配)
my_complex& my_complex::operator =(const my_complex& lhs) {
real = lhs.real;
imag = lhs.imag;
return *this;
}
bool my_complex::operator ==(const my_complex& rhs) {
return real == rhs.real && imag == rhs.imag;
}
my_complex::~my_complex() {

}
ostream& operator<<(ostream& output, const my_complex &rhs) {
output << rhs.real;
if (rhs.imag > 0) {
std::cout << "+";
}
std::cout << rhs.imag << "i";
return output;
}
int main() {
my_complex c1(1, 5);
my_complex c2(c1); //等价于 my_complex c2 = c1;
my_complex c3(2, 3);
bool flag(c1 == c2);
c1 = c1 + c2;
cout << c1 << endl;
cout << c2 << endl;
cout << c3 << endl;
cout << flag << endl;
}

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式