- 1、本文档共20页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c复习大题
#include iostream
using namespace std;
class Complex //定义complex类
{public:
Complex(){real=0;imag=0;} //定义构造函数
Complex(double r,double i){real=r;imag=i;} //构造函数重载
friend Complex operator+(Complex c1,Complex c2); //声明复数相加的函数
friend Complex operator-(Complex c1,Complex c2); //声明复数相减的函数
friend Complex operator*(Complex c1,Complex c2); //声明复数相乘的函数
friend Complex operator/(Complex c1,Complex c2); //声明复数相除的函数
void display();
private:
double real; //实部
double imag; //虚部
};
Complex operator+(Complex c1,Complex c2) //定义复数相加的函数
{Complex c;
c.real=c1.real+c2.real; //实部相加
c.imag=c1.imag+c2.imag; //虚部相加
return c;}
Complex operator-(Complex c1,Complex c2) //定义复数相减的函数
{Complex c;
c.real=c1.real-c2.real;
c.imag=c2.imag-c2.imag;
return c;}
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/(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;}
void Complex::display() //定义输出函数
{cout(real,imagi)endl;}
int main()
{Complex c1(3,4),c2(5,-10),c3; //定义三个复数对象
c3=c1+c2;
coutc1+c2=;
c3.display();
c3=c1-c2;
coutc1-c2=;
c3.display();
c3=c1*c2;
coutc1*c2=;
c3.display();
c3=c1/c2;
coutc1/c2=;
c3.display();
getchar();
return 0;
}
小结:运算符重载函数的表达方式要明确,参数说明是内部类型时不能重载。不是所有的运算符都能重载,运算符重载时左右两边数据类型要相同。
题3 (5-6) 有以下程序结构,请分析所有成员在各类的范围内的访问权限。
class A
{public:
void f1( );
protected:
void f2( );
private:
int i;
};
class B: public A
{public:
void f3( );
int k;
private:
int m;
};
class C: protected B
{public:
void f4( );
protected:
int m;
private:
int n;
};
class D: private C
{public:
void f5( );
protected:
int p;
private:
int q;
};
int main()
{A a1;
B b1;
C c1;
D d1;
f1,f3,k,f4,f5为公用的,都可以使用,f2,m,p为受保护的,只能在类内使用,类外不能被使用。i,m,n,q为私有的,不能被访问。
f1 f2
文档评论(0)