- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验5 多态性和运算符重载
姓名 班级 电信13F 学号
实验目的
通过vc开发环境下派生类多态性的设计与实现,了解运行时多态的概念,掌握派生类多态性基本设计和编程方法。
实验主要内容
有三角形、正方形和圆形三种图形,求它们各自的面积。可先抽象出一个基类,在基类中声明一个虚函数,用于求面积,并利用单界面设计各个图形求面积的方法。
使用成员函数重载实现复数四则运算、逻辑运算和关系运算;
使用友元函数重载实现字符串连接运算,赋值运算;
实验程序
1. #includeiostream
#includemath.h
using namespace std;
#define PI 3.14
class base
{
public:
virtual double area(){return 0;}
};
class triangle:public base
{
protected:
double h; double w;
public:
triangle(double H,double W)
{
h=H; w=W;
}
double area()
{
return 0.5*h*w;
}
};
class square:public base
{
protected:
double a;
public:
square(double A)
{
a=A;
}
double area()
{
return a*a;
}
};
class circle:public base
{
protected:
double radius;
public:
circle(double Rad)
{
radius=Rad;
}
double area()
{
return PI * radius * radius;
}
};
void main()
{
base *a,*b,*c;
a=new triangle(2,8);
b=new square(9);
c=new circle(5);
couta-area ()endl;
coutb-area ()endl;
coutc-area ()endl;
}
2. #includeiostream
using namespace std;
class complex //复数
{
protected:
double real; //实部
double imag; //虚部
public:
complex(){};
complex(double Real,double Imag)
{
real=Real; imag=Imag;
}
complex operator+ (complex); //使用成员函数重载实现复数加法运算
complex operator- (complex); //使用成员函数重载实现复数减法运算
complex operator* (complex); //使用成员函数重载实现复数乘法运算
complex operator/ (complex); //使用成员函数重载实现复数除法运算
complex operator(complex); //使用成员函数重载实现与运算
complex operator||(complex); //使用成员函数重载实现或运算
complex operator! (); //使用成员函数重载实现非运算
complex operator(complex); //使用成员函数重载实现或运算
void print( complex c) //输出结果
{
if(c.imag0) coutc.realc.imagi\n;
else coutc.real+c.imagi\n;
}
};
complex complex:: operator+ (complex c) //加法
{
return complex(real+c.real,imag+c.imag);
}
complex complex:: operator- (complex c) //减法
{
return complex(real-c.real,imag-c.imag);
}
complex complex:: operator* (complex c) //乘法
{
return complex(real * c.real - imag * c.imag, real * c.imag + imag * c.real);
}
文档评论(0)