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 ...
随机推荐
- Python和Java的区别
这里是我的一些总结,有些是参考别人的(在这里谢谢!!!) 区别: 1.Python比Java简单,学习成本低,开发效率高2.Java运行效率高于Python,尤其是纯Python开发的程序,效率极低3 ...
- 使用Cap解决.Netcore分布式事务
一.什么是Cap CAP 是一个基于 .NET Standard 的 C# 库,它是一种处理分布式事务的解决方案,同样具有 EventBus 的功能,它具有轻量级.易使用.高性能等特点. 在我们 ...
- IdentityServer4 保护.net framework webapi
一.IS4服务器配置 1.新建一个Asp.net Core MVC程序,模板选择 Empty 2.Nuget添加 IdentityServer4,我这里添加的是2.5.3 3.添加Config文件, ...
- Android PhotoView基本功能实现
Android开发过程中,想必都使用过PhotoView来实现图片展示的功能.在最新版的sdk(android-23)有了一个原生的photoView,并且代码实现也很简单,逻辑也很清晰.我们在实际的 ...
- 03-kubernetes 应用快速入门
目录 增删改查 增 service创建 测试其他pod通过series访问nginx 测试手动变更nginx对应的pod的ip pod和service之间的关系 service调度测试 创建myapp ...
- 简单ORM的实现
简单的orm实现 我们在使用各种框架的时候,关于数据库这方面的使用,框架给我们提供了很好的封装,这个就是orm 关系映射 orm的底层无非就是做了关系映射 数据库的表(table) --> 类( ...
- vue如何引入图片地址
我们在用vue时储存图片时,一般把图片放在两种文件下,一个是static文件夹下,另外一个是assets文件夹下. 下面总体说一下这两个的区别及正确的引用方式: static是放不会变动的图片(或文件 ...
- VLAN实验3(Hybrid接口的应用)
本实验基于<HCNA网络技术实验指南> 本实验使用eNSP软件 原理概述: Hybrid接口既可以连接普通终端的接入链路又可以连接交换机间的干道链路,它允 许多个VLAN的帧通过,并可以在 ...
- 微信小程序——e.target与e.currentTarget的区别
在小程序的点击事件中,我们经常使用这两个属性来传参,看起来效果一样,查了官方文档如下: target:事件源组件对象 currentTarget:当前组件对象 什么意思?我刚开始就有点不懂,那就直接上 ...
- 微信小程序——template详细使用
WXML提供模板(template),可以在模板中定义代码片段,然后在不同的地方调用减少冗余代码. 1.1定义模板 1.1.1.创建模板文件夹 1.1.2.使用 name 属性,作为模板的名字.然后 ...