设计定义并实现Complex类
Posted wyf-blogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设计定义并实现Complex类相关的知识,希望对你有一定的参考价值。
实验结论
Complex类
Code:
#include<iostream> #include<cmath> #include<cstdlib> using namespace std; class Complex { public: Complex(double newr = 0, double newi = 0); Complex(Complex &c1); void add(Complex c1); void show(); double mod(); private: double real; double imaginary; }; //构造函数 Complex::Complex(double newr/*=0*/, double newi/*=0*/) :real(newr), imaginary(newi) {} //复制构造函数 Complex::Complex(Complex &c1) : real(c1.real), imaginary(c1.imaginary) {} //复数相加 void Complex::add(Complex c1) { real += c1.real; imaginary += c1.imaginary; } //输出 void Complex::show() { if (imaginary != 0) cout << real << "+" << imaginary << "i" << endl; else cout << real << endl; } //取模 double Complex::mod() { return sqrt(real*real + imaginary * imaginary); } int main() { Complex c1(3,5); Complex c2 = 4.5; Complex c3(c1); Complex c4; c1.add(c2); cout << "c1="; c1.show(); cout << "c2="; c2.show(); cout << "c3="; c3.show(); cout << "c4="; c4.show(); cout << "c1.mod="<<c1.mod()<<endl; system("pause"); return 0; }
Screensort:
c1为与c2相加后的值
c3为c1的初值
c4为默认值
实验总结与体会
1.设计类时需要将所有可能出现的情况考虑在内,以此设计参数。
以上是关于设计定义并实现Complex类的主要内容,如果未能解决你的问题,请参考以下文章
定义一个复数类,并实现以下复数类的方法:构造方法、得到实部、得到虚部、设置实部、设置虚部、复数的加