c++-多态小案例
多态小案例
- C面向接口编程和C多态
- 函数类型语法基础
- 函数指针做函数参数(回调函数)思想剖析
- 函数指针做函数参数两种用法(正向调用、反向调用)
- 纯虚函数 抽象类
- 抽象类基本概念
- 抽象类在多继承中的应用
- 面向抽象类编程案例强化
- 面向抽象类编程案例强化
- 抽象类在多继承中的应用
- 抽象类基本概念
多态图形案例
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
//抽象的图形类
class Shape
{
public:
//打印出图形的基本你属性
virtual void show() = 0;
//得到图形的面积
virtual double getArea() = 0;
virtual ~Shape() {
}
};
//圆类
class Circle :public Shape
{
public:
Circle(double r) {
this->r = r;
}
//打印出图形的基本你属性
virtual void show() {
cout << "圆的半径是 " << r << endl;
}
//得到图形的面积
virtual double getArea() {
cout << "获取圆的面积" << endl;
return this->r*this->r *3.14;
}
~Circle() {
cout << "圆的析构函数。。" << endl;
}
private:
double r;
};
class Square :public Shape
{
public:
Square(double a) {
this->a = a;
}
//打印出图形的基本你属性
virtual void show() {
cout << "正方形的边长是" << this->a << endl;
}
//得到图形的面积
virtual double getArea() {
cout << "得到正方形的面积" << endl;
return a*a;
}
~Square() {
cout << "正方形的析构函数" << endl;
}
private:
double a;
};
int main(void)
{
Shape *array[2] = { 0 };
for (int i = 0; i < 2; i++) {
//生成一个圆
if (i == 0) {
double r;
cout << "请输入圆的半径" << endl;
cin >> r;
array[i] = new Circle(r);
}
//生成一个正方形
else {
double a;
cout << "请输入正方形的边长" << endl;
cin >> a;
array[i] = new Square(a);
}
}
//遍历这个array数组
for (int i = 0; i < 2; i++) {
array[i]->show();
cout << array[i]->getArea() << endl;
delete array[i];
}
return 0;
}
多态案例-程序员工资
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
class Programmer
{
public:
Programmer(double salary)
{
this->salary = salary;
}
virtual void printMoney() = 0;
virtual ~Programmer() {
}
protected:
double salary;
};
class Junior_programmer :public Programmer
{
public:
Junior_programmer(double salary) :Programmer(salary) {
}
virtual void printMoney(){
cout << "初级程序员的工资是" << this->salary << endl;
}
};
class Mid_programmer :public Programmer
{
public:
Mid_programmer(double salary) :Programmer(salary) {
}
virtual void printMoney(){
cout << "中级程序员的工资是" << this->salary << endl;
}
};
class Adv_programmer :public Programmer
{
public:
Adv_programmer(double salary) :Programmer(salary) {
}
virtual void printMoney(){
cout << "高级程序员的工资是" << this->salary << endl;
}
};
int main(void)
{
Programmer * pro1 = new Junior_programmer(12000);
pro1->printMoney();
delete pro1;
Programmer * pro2 = new Mid_programmer(15000);
pro2->printMoney();
delete pro2;
Programmer *pro3 = new Adv_programmer(30000);
pro3->printMoney();
delete pro3;
return 0;
}
数组类型和数组指针
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
//方法一: 直接定义一个数组类型
typedef int(ARRAY_INT_10)[10];
//方法二:
typedef int(*ARRAY_INT_10_P)[10];
int main(void)
{
int array[10]; //array 应该是一个指向int类型指针。
//方法一:
//ARRAY_INT_10 *array_10_p = &array; //? *array_10_p === array
//方法二:
ARRAY_INT_10_P array_10_p = &array;
for (int i = 0; i < 10; i++) {
(*array_10_p)[i] = i + 10;
}
for (int i = 0; i < 10; i++) {
cout << array[i] << endl;
}
//方法三:
int(*p)[10] = &array;
cout << "------" << endl;
for (int i = 0; i < 10; i++) {
cout << (*p)[i] << endl;
}
return 0;
}
函数指针
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
int func(int a, int b)
{
cout << " 1999 年写的 func" << endl;
return 0;
}
int func2(int a, int b)
{
cout << "1999 写的 func2" << endl;
return 0;
}
int func3(int a, int b)
{
cout << "1999年 写的 func3 " << endl;
return 0;
}
//2018想添加一个新的子业务
int new_func4(int a, int b)
{
cout << "2018 新写的子业务" << endl;
cout << "a = " << a << ", b = " << b << endl;
return 0;
}
//方法一: 函数的返回值, 函数的参数列表(形参的个数,类型,顺序)
//定义一个函数类型。
typedef int(FUNC)(int, int);
//方法二: 定义一个函数指针
typedef int(*FUNC_P)(int, int);
//定义一个统一的接口 将他们全部调用起来。
void my_funtion(int(*fp)(int, int), int a, int b)
{
cout << "1999年实现这个架构业务" << endl;
cout << "固定业务1" << endl;
cout << "固定业务2" << endl;
fp(a, b);//可变的业务
cout << "固定业务3" << endl;
}
int main(void)
{
#if 0
//方法一:
FUNC *fp = NULL;
fp = func;
fp(10, 20);
FUNC_P fp2 = NULL;
fp2 = func;
fp2(100, 200);
//方法三:
int(*fp3)(int, int) = NULL;
fp3 = func;
fp3(1000, 3000);
#endif
my_funtion(func, 10, 20);
my_funtion(func2, 100, 200);
my_funtion(func3, 1000, 2000);
my_funtion(new_func4, 2000, 3000);
return 0;
}
锦囊妙计
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iostream>
#include <fstream>
using namespace std;
//-------------抽象层------------
//定义拆开锦囊方法的类型。
typedef void(TIPS)(void);
//定义锦囊
struct tip
{
char from[64]; //谁写的
char to[64];//写给谁的。
//锦囊的内容
TIPS *tp;//相当于抽象类的 纯虚函数.
};
//需要一个打开锦囊的架构函数
void open_tips(struct tip *tip_p)
{
cout << "打开了锦囊" << endl;
cout << "此锦囊是由" << tip_p->from << "写给 " << tip_p->to << "的。" << endl;
cout << "内容是" << endl;
tip_p->tp(); //此时就发生了多态现象。
}
//提供一个创建一个锦囊的方法
struct tip* create_tip(char*from, char *to, TIPS*tp)
{
struct tip *temp = (struct tip*)malloc(sizeof(struct tip));
if (temp == NULL) {
return NULL;
}
strcpy(temp->from, from);
strcpy(temp->to, to);
//给一个回调函数赋值, 一般称 注册回调函数
temp->tp = tp;
return temp;
}
//提供一个销毁锦囊的方法
void destory_tip(struct tip *tp)
{
if (tp != NULL) {
free(tp);
tp = NULL;
}
}
// ------------- 实现层------------
//诸葛亮写了3个锦囊
void tip1_func(void)
{
cout << "一到东吴就拜会乔国老" << endl;
}
void tip2_func(void)
{
cout << "如果主公乐不思蜀,就谎称曹贼来袭。赶紧回来 " << endl;
}
void tip3_func(void)
{
cout << "如果被孙权追杀,向孙尚香求救" << endl;
}
void tip4_func(void)
{
cout << "如果求救孙尚香都不灵, 你们去死了, 我是蜀国老大了" << endl;
}
//--------------- 业务层-----------------
int main(void)
{
//创建出3个锦囊
struct tip *tip1 = create_tip("孔明", "赵云", tip1_func);
struct tip *tip2 = create_tip("孔明", "赵云", tip2_func);
struct tip *tip3 = create_tip("孔明", "赵云", tip3_func);
struct tip *tip4 = create_tip("庞统", "赵云", tip4_func);
//由赵云进行拆锦囊。
cout << "刚刚来到东吴, 赵云打开第一个锦囊" << endl;
open_tips(tip1);
cout << "-----------" << endl;
cout << "刘备乐不思蜀, 赵云打开第二个锦囊" << endl;
open_tips(tip2);
cout << "-----------" << endl;
cout << "孙权大军追杀,赵云打开第三个锦囊" << endl;
open_tips(tip3);
cout << "-----------" << endl;
cout << "赵云发现,实在是杀不动了, 打开了第四个锦囊" << endl;
open_tips(tip4);
destory_tip(tip1);
destory_tip(tip2);
destory_tip(tip3);
destory_tip(tip4);
return 0;
}
c++-多态小案例的更多相关文章
- JAVA之旅(八)——多态的体现,前提,好处,应用,转型,instanceof,多态中成员变量的特点,多态的案例
JAVA之旅(八)--多态的体现,前提,好处,应用,转型,instanceof,多态中成员变量的特点,多态的案例 学习是不能停止的 一.多态 我们今天又要学习一个新的概念了,就是多态,它是面向对象的第 ...
- 机械表小案例之transform的应用
这个小案例主要是对transform的应用. 时钟的3个表针分别是3个png图片,通过setInterval来让图片转动.时,分,秒的转动角度分别是30,6,6度. 首先,通过new Date函数获取 ...
- shell讲解-小案例
shell讲解-小案例 一.文件拷贝输出检查 下面测试文件拷贝是否正常,如果cp命令并没有拷贝文件myfile到myfile.bak,则打印错误信息.注意错误信息中basename $0打印脚本名.如 ...
- [jQuery学习系列六]6-jQuery实际操作小案例
前言最后在这里po上jQuery的几个小案例. Jquery例子1_占位符使用需求: 点击第一个按钮后 自动去check 后面是否有按钮没有选中, 如有则提示错误消息. <html> &l ...
- 02SpringMvc_springmvc快速入门小案例(XML版本)
这篇文章中,我们要写一个入门案例,去整体了解整个SpringMVC. 先给出整个项目的结构图:
- React.js入门小案例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title&g ...
- SqlDependency缓存数据库表小案例
SqlDependency的简介: SqlDependency是outputcache网页缓存的一个参数,它的作用是指定缓存失效的数据库依赖项,可以具体到数据库和表. SqlDependency能解决 ...
- JavaScript apply函数小案例
//回调函数1 function callback(a,b,c) { alert(a+b+c); } //回调函数2 function callback2(a,b) { alert(a+b); } / ...
- Session小案例------完成用户登录
Session小案例------完成用户登录 在项目开发中,用户登陆功能再平常只是啦,当用户完毕username和password校验后.进入主界面,须要在主界面中显示用户的信息,此时用ses ...
随机推荐
- 2019-10-11:渗透测试,基础学习,php+mysql连接,笔记
mysql导出数据1,通过工具如phpmyadmin,navicat等2,mysqldump -u -p 库名 > /数据库文件, mysqldump -u -p 库名 表名 > /表数据 ...
- 深入理解Android异步消息处理机制
一.概述 Android 中的异步消息处理主要分为四个部分组成,Message.Hndler.MessageQueue 和 Looper.其关系如下图所示: 1. Message 是线程之间传递的消息 ...
- shell 读取文件第几列
读取文件的第2列和第4列: cat filename.txt | awk '{ print $2 $4 }' 求文件file1.txt的第二列 和 file2.txt(单列文件)的交集: cat fi ...
- uglify-js 和uglify-es
uglify-js 它不支持压缩 es6,参考github的issue It seems like uglify-js does not support es6? uglify-js在压缩代码时,遇到 ...
- [TimLinux] JavaScript table的td内容超过宽度缩为三个点
1. 思路 CSS控制td内容自动缩为三个点 JS控制鼠标悬浮显示td全部内容 2. 实现 HTML代码: <!DOCTYPE html> <html> <head> ...
- [TimLinux] Python 使用入门
1. 为什么用Python 软件质量:Python注重可读性.一致性和软件质量. 提高开发者的效率:Python代码的大小往只有C++/Java代码的1/5 ~ 1/3. 程序的可移植性:绝大多数Py ...
- openlayers6结合geoserver实现地图属性查询(附源码下载)
前言 之前写过一篇 openlayers4 版本的地图属性查询文章,但是由于是封装一层 js 代码写的,很多初学者看起来比较有点吃力,所以本篇文章重新写一篇地图属性查询文章,直接基于最新版本 open ...
- hdu5969最大的位或
题目:http://acm.hdu.edu.cn/showproblem.php?pid=5969 题意:给定自然数l和r ,选取2个整数x,y,满足l <= x <= y <= r ...
- HDU5343 MZL's Circle Zhou(SAM+记忆化搜索)
Problem Description MZL's Circle Zhou is good at solving some counting problems. One day, he comes u ...
- HDU2242 考研路茫茫——空调教室 (双联通分+树形DP)
考研路茫茫——空调教室 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total ...