上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 90 下一页
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 1.2.6模板的局限性 模板的通用性并不是万能的 */ // **************************************** 阅读全文
posted @ 2021-04-17 20:08 yub4by 阅读(54) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 1.2.5普通函数和函数模板的调用规则 1. 如果函数模板和普通函数都可以实现,优先调用普通函数 2. 可以通过空模板参数列表来强制调用函数模 阅读全文
posted @ 2021-04-17 20:07 yub4by 阅读(48) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 1.2.4 普通函数和函数模板的区别 普通函数调用时可以发生自动类型转换(隐式类型转换) 函数模板调用时,如果利用自动类型推导,不会发生隐式类 阅读全文
posted @ 2021-04-17 20:06 yub4by 阅读(46) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 1.2.3函数模板案例 利用函数模板封装一个排序的函数,可以对不同数据类型数组进行排序 排序规则从大到小,排序算法为选择排序 */ templ 阅读全文
posted @ 2021-04-17 20:05 yub4by 阅读(47) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 1.2.2函数模板注意事项 自动类型推导,必须推导出一致的数据类型T,才可以使用 模板必须要确定出T的数据类型,才可以使用 */ templa 阅读全文
posted @ 2021-04-17 20:04 yub4by 阅读(54) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<stdlib.h> #include<string> using namespace std; /* 1.1模板概念 C++另一种编程思想称为 泛型编程 ,主要利用的技术就是模板 C++提供两种模板机制:函数模板和类模板 */ /* 1.2函数 阅读全文
posted @ 2021-04-17 20:03 yub4by 阅读(45) 评论(0) 推荐(0) 编辑
摘要: work.h #pragma once#include#includeusing namespace std;// 职工抽象类class Worker{public: int id; string name; int dept_id; ... 阅读全文
posted @ 2021-04-17 15:17 yub4by 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeusing namespace std;/* 4.7.6 多态案例3--电脑组装 案例描述: 电脑主要组成部件为 CPU(用于计算),显卡(用于显示),内存条(用于存储)... 阅读全文
posted @ 2021-03-18 10:38 yub4by 阅读(29) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeusing namespace std;/* 4.7.5 虚析构和纯虚析构 多态使用时,如果子类中有属性开辟到堆区,那么父类指针在释放时无法调用到子类的析构代码 解决方式:将父类... 阅读全文
posted @ 2021-03-18 10:38 yub4by 阅读(24) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeusing namespace std;/* 4.7.2 多态案例--计算器类 案例描述: 分别利用普通写法和多态技术,设计实现两个操作数进行运算的计算器类 ... 阅读全文
posted @ 2021-03-18 10:37 yub4by 阅读(54) 评论(0) 推荐(0) 编辑
上一页 1 ··· 78 79 80 81 82 83 84 85 86 ··· 90 下一页