1.目的:

/*设计一个计算图形面积的类库。
类库的顶层是一个抽象类,并且提供三个纯虚函数;显示数据成员、返回面积和返回体积。
Class Shape
{
virtual void showData()=0;
virtual double reArea()=0;
virtual double reVolume()=0;
};
第二层由Shape类派生TwoDimShape(二维图形)和ThreeShape(三维图形),
它们增加了有关的数据成员,但没有成员函数的实现。
第三层派生具体的图形类。TwoDimShape类派生Circle(圆)、Elipse(椭圆)、
Rectangle(矩形)和Triangle(三角形)等类。
ThreeShape类派生Ball(球体)、Cylinder(圆柱体)、
RectangularParallelepiped(长方体)等类。
在主函数测试中使用多态方式调用不同对象的求值函数。
*/

2.代码如下:

/*
*This file contains code for C++ 6th experiment
*By LZH
*/
#include<iostream>
#include<string>
using namespace std;
const double PI = acos(-1.0);
// Definition of Shape class and related functions goes here
class Shape
{
virtual void showData() = 0;
virtual double reArea() = 0;
virtual double reVolume() = 0;
};
class TwoDimShape :virtual public Shape {
protected:
double x, y;
public:
virtual void showData() {
return ;
}
virtual double reArea() {
return 0;
}
virtual double reVolume() {
return 0;
}
};
class ThreeShape :virtual public Shape {
protected:
double x, y, z;
public:
virtual void showData() {
return;
}
virtual double reArea() {
return 0;
}
virtual double reVolume() {
return 0;
}
};
class Circle :virtual public TwoDimShape {
public:
Circle(double tp) {
x = tp;
}
Circle(Circle &asp) {
x = asp.x;
}
~Circle()
{ }
void showData() {
cout << "This is a Circle:" << endl
<< "The radiation:" << x << endl
<< "The area:" << reArea() << endl;
}
double reArea() {
return PI*x*x;
}
};
class Elipse :virtual public TwoDimShape {
public:
Elipse(double ta, double tb) {
x = ta, y = tb;
}
Elipse(Elipse &asp) {
x = asp.x, y = asp.y;
}
~Elipse() { }
void showData() {
cout << "This is a Elipse:" << endl
<< "The long axis:" << x << endl
<< "The short axis:" << y << endl
<< "The area:" << reArea() << endl;
}
double reArea() {
return PI*x*y;
}
};
class Rectangle :virtual public TwoDimShape {
public:
Rectangle(double ta, double tb) {
x = ta, y = tb;
}
Rectangle(Rectangle &asp) {
x = asp.x, y = asp.y;
}
~Rectangle() { }
void showData() {
cout << "This is a Rectangle:" << endl
<< "The long axis:" << x << endl
<< "The short axis:" << y << endl
<< "The area:" << reArea() << endl;
}
double reArea() {
return x*y;
}
};
class Triangle :virtual public TwoDimShape {
public:
Triangle(double ta, double tb) {
x = ta, y = tb;
}
Triangle(Triangle &asp) {
x = asp.x, y = asp.y;
}
~Triangle() { }
void showData() {
cout << "This is a Triangle:" << endl
<< "The base length:" << x << endl
<< "The height :" << y << endl
<< "The area:" << reArea() << endl;
}
double reArea() {
return x*y / 2.0;
}
};
class Ball :virtual public ThreeShape {
public:
Ball(double ta) {
x = ta;
}
Ball(Ball &asp) {
x = asp.x;
}
~Ball() { }
void showData() {
cout << "This is a Ball:" << endl
<< "The radiation:" << x << endl
<< "The surface area:" << reArea() << endl;
}
double reArea() {
return PI*pow(x, 3)*4.0 / 3.0;
}
double reVolume() {
return PI*x*x;
}
};
class Cylinder :virtual public ThreeShape {
public:
/*
V=PI*r*r*h S=2*PI*r+r*h
*/
Cylinder(double ta, double tb) {
x = ta, y = tb;
}
Cylinder(Cylinder &asp) {
x = asp.x, y = asp.y;
}
~Cylinder() { }
void showData() {
cout << "This is a Cylinder:" << endl
<< "The radiation:" << x << endl
<< "The height:" << y << endl
<< "The surface area:" << reArea() << endl;
}
double reArea() {
return 2 * PI*x + x*y;
}
double reVolume() {
return PI*x*x*y;
}
};
//RectangularParallelepiped
class cuboid :virtual public ThreeShape {
public:
cuboid(double ta, double tb, double tc) {
x = ta, y = tb, z = tc;
}
cuboid(cuboid &asp) {
x = asp.x, y = asp.y, z = asp.z;
}
void showData() {
cout << "This is a cuboid:" << endl
<< "The length:" << x << endl
<< "The width:" << y << endl
<< "The height" << z << endl
<< "The surface area:" << reArea() << endl; }
double reArea() {
return 2 * (x*y + x*z + y*z);
}
double reVolume() {
return x*y*z;
}
};
int main(void) {
TwoDimShape a;
ThreeShape b;
TwoDimShape *p = &a;
ThreeShape *w = &b;
Circle t1(1.0);
Elipse t2(1.0, 2.0);
Rectangle t3(10.0,2.3);
Triangle t4(4.0, 5.0);
Ball t5(2.33333);
Cylinder t6(4.5, 65.0);
cuboid t7(132, 5,156);
p = &t1;
p->showData();
p = &t2;
p->showData();
p = &t3;
p->showData();
p = &t4;
p->showData();
w = &t5;
w->showData();
w = &t6;
w->showData();
w = &t7;
w->showData();
return 0;
}

3 . 测试截图



4.关于多态性

 在这个例子中我用了基类指针指向基类,这个不难理解,在类型兼容规则下,
指向基类的指针可以隐式的转换成派生类的指针。
这是最常见的关于多态的用法,利用该指针指向任意一个子类对象,
就可以调用相应的虚函数,指向的子类的不同,实现的方法也就不同。

C++继承与多态练习--计算图形面积的更多相关文章

  1. C#基础总结之八面向对象知识点总结-继承与多态-接口

    .方法深入讲解(返回值,形参与实参) 方法 public int getName(int i,int j) { int sum = i + j; return sum; } .利用泛型存储对象数据 . ...

  2. C++封装、继承、多态

    C++封装继承多态总结 面向对象的三个基本特征 面向对象的三个基本特征是:封装.继承.多态.其中,封装可以隐藏实现细节,使得代码模块化:继承可以扩展已存在的代码模块(类):它们的目的都是为了--代码重 ...

  3. JavaScript 定义类的最佳写法——完整支持面向对象(封装、继承、多态),兼容所有浏览器,支持用JSDuck生成文档

    作者: zyl910 [TOC] 一.缘由 由于在ES6之前,JavaScript中没有定义类(class)语法.导致大家用各种五花八门的办法来定义类,代码风格不统一.而且对于模拟面向对象的三大支柱& ...

  4. 《JAVA程序设计与实例》记录与归纳--继承与多态

    继承与多态 概念贴士: 1. 继承,即是在已经存在的类的基础上再进行扩展,从而产生新的类.已经存在的类成为父类.超类和基类,而新产生的类成为子类或派生类. 2. Java继承是使用已存在的类的定义作为 ...

  5. Java进阶篇(一)——接口、继承与多态

    前几篇是Java的入门篇,主要是了解一下Java语言的相关知识,从本篇开始是Java的进阶篇,这部分内容可以帮助大家用Java开发一些小型应用程序,或者一些小游戏等等. 本篇的主题是接口.继承与多态, ...

  6. c# 中的封装、继承、多态详解

    面向对象有封装.继承.多态这三个特性,面向对象编程按照现实世界的特点来管理复杂的事物,把它们抽象为对象,具有自己的状态和行为,通过对消息的反应来完成任务.这种编程方法提供了非常强大的多样性,大大增加了 ...

  7. Day7 初识面向对象,面向对象之继承、多态和封装

    一.面向对象引言 一.面向对象的程序设计的由来 详述见:http://www.cnblogs.com/linhaifeng/articles/6428835.html 二.面向对象引子 写一个简单程序 ...

  8. Java编程的逻辑 (15) - 初识继承和多态

    本系列文章经补充和完善,已修订整理成书<Java编程的逻辑>,由机械工业出版社华章分社出版,于2018年1月上市热销,读者好评如潮!各大网店和书店有售,欢迎购买,京东自营链接:http:/ ...

  9. Java 继承和多态

                                                        Java  继承和多态 Java 继承 继承的概念 继承是java面向对象编程技术的一块基石,因 ...

随机推荐

  1. Arcgis GDB文件地理数据库、shapefile、coverage 和其他基于文件的数据源所支持的函数的完整列表

    函数 以下是文件地理数据库.shapefile.coverage 和其他基于文件的数据源所支持的函数的完整列表.个人地理数据库和 ArcSDE 地理数据库也支持这些函数,但这些数据源可能使用不同的语法 ...

  2. Intent和BroadcastReceiver

    Intent简介 Intent是一种消息传递机制,作用: 使用类名显示启动一个特定的Service或Activity 启动Activity或Service来执行一个Intent 广播某个事件已经发生 ...

  3. (转)informatica 面试题大全

    1 What is the difference between a data warehouse and a data mart? Ø Dataware house: It is a collect ...

  4. Python学习---Django下的Sql性能的测试

    安装django-debug-tools Python学习---django-debug-tools安装 性能测试: settings.py INSTALLED_APPS = [ ... 'app01 ...

  5. 申请MVP奖励时的小Tips

    大家新年好,今天MSPrecious为大家带来一些申请MVP奖励时的小Tips.   本文分为三个部分 MVP是什么 如何申请MVP 申请MVP需要注意的事项 MVP是什么? 我想,点进来看这篇文章的 ...

  6. [BZOJ 1924][Sdoi2010]所驼门王的宝藏

    1924: [Sdoi2010]所驼门王的宝藏 Time Limit: 5 Sec  Memory Limit: 128 MBSubmit: 1285  Solved: 574[Submit][Sta ...

  7. Nginx and PHP-FPM Configuration and Optimizing Tips and Tricks

    原文链接:http://www.if-not-true-then-false.com/2011/nginx-and-php-fpm-configuration-and-optimizing-tips- ...

  8. BZOJ 1002 轮状病毒 矩阵树定理

    题目链接: https://www.lydsy.com/JudgeOnline/problem.php?id=1002 题目大意: 给定n(N<=100),编程计算有多少个不同的n轮状病毒 思路 ...

  9. python 打包文件

    tarfile import tarfile tar = tarfile.open("sk_camera_6018.tar","w") tar.add(full ...

  10. 【[CQOI2018]交错序列】

    这个题简直有毒,\(O((a+b)^3logn)\)的做法不卡常只比\(O(2^n*n)\)多\(10\)分 看到\(a\)和\(b\)简直小的可怜,于是可以往矩阵上联想 发现这个柿子有些特殊,好像可 ...