C++_day8_ 多重继承、钻石继承和虚继承
1.继承的复习
1.1 类型转换
编译器认为访问范围缩小是安全的。
1.2 子类的构造与析构
子类中对基类构造函数初始化只能写在初始化表里,不能写在函数体中。
阻断继承。
1.3 子类的拷贝构造与拷贝赋值
2. 多重继承、钻石继承和虚继承
- 多重继承
一个类可以同时从多个基类继承实现代码。
示例代码:
#include <iostream> using namespace std; class Phone{
public:
Phone(string const& no):m_no(no){
cout << "Phone构造" << this << endl;
}
~Phone(void)
{
cout << "Phone析构" << this << endl;
}
void call (string const& no)
{
cout << m_no << "呼叫" << no << endl;
}
private:
string m_no;
}; class Player{
public:
Player(string const& media):m_media(media)
{
cout << "Player构造" << this << endl;
}
~Player(void)
{
cout << "Player析构" << this << endl;
}
void play(string const& clip)
{
cout << m_media << "播放" << clip << endl;
}
private:
string m_media;
}; class Computer{
public:
Computer(string const& os):m_os(os)
{
cout << "Computer构造" << this << endl;
}
~Computer(void)
{
cout << "Computer析构" << this << endl;
}
void run(string const& app)
{
cout << "在" << m_os << "上运行" << app << endl;
}
private:
string m_os;
}; class SmartPhone:public Phone, public Player, public Computer{
public:
SmartPhone (string const& no, string const& media, string const& os):Phone(no), Player(media), Computer(os){}
private:
}; int main(void)
{
SmartPhone sp("", "MP3/MP4/3GP", "Andriod");
sp.call("");
sp.play("我还年轻");
sp.run("JBG大战Victor Wang");
Phone* pPhone = &sp; //访问范围缩小,不会报错
cout << "&sp = " << &sp << endl;
cout << "pPhone = " << pPhone << endl;
Player* pPlayer = &sp;
cout << "pPlayer = " << pPlayer << endl;
Computer* pComputer = &sp;
cout << "pComputer = " << pComputer << endl;
/*
SmartPhone* pSmart = static_cast<SmartPhone*> (pComputer);
cout << "pSmart = " << pSmart << endl;
*/ /*
SmartPhone* pSmart = (SmartPhone*) pComputer;
cout << "pSmart = " << pSmart << endl;
*/ SmartPhone* pSmart = reinterpret_cast <SmartPhone*> (pComputer);
cout << "pSmart = " << pSmart << endl; return ;
}
名字冲突问题:
1.
class C: public A, public B{
public:
using A::foo;
using B::foo; };
2.
/*
c.A::foo();
c.B::foo(100);
*/
3.
class C: public A, public B{
public:
/*
using A::foo;
using B::foo;
*/
void foo(int f, int x)
{
if(f == )
A::foo();
else if(f == )
B::foo(x);
}
};
- 钻石继承
一个子类继承自多个基类,而这些基类有源自共同的祖先,这样的继承结构成为钻石继承(菱形继承)。
- 虚继承
示例代码:
#include <iostream> using namespace std; class A{
public:
A(int data):m_data(data)
{
cout << "A构造" << this << endl;
}
protected:
int m_data;
}; class B: virtual public A {
public:
B(int data): A(data)
{
cout << "B构造" << this << endl;
}
void set(int data)
{
cout << "B:" << &m_data << endl;
m_data = data;
}
}; class C: virtual public A {
public:
C(int data): A(data)
{
cout << "C构造" << this << endl;
}
int get (void) const
{
cout << "C:" << &m_data << endl;
return m_data;
}
}; class D: public B, public C{
public:
D(int data):B(data), C(data), A(data) {}
}; int main(void)
{
D d();
d.set();
cout << d.get() << endl;
cout << sizeof(d) << endl; return ;
}
虚继承是为了解决钻石继承的问题。
C++_day8_ 多重继承、钻石继承和虚继承的更多相关文章
- C++ 多继承和虚继承的内存布局(转)
转自:http://www.oschina.net/translate/cpp-virtual-inheritance 警告. 本文有点技术难度,需要读者了解C++和一些汇编语言知识. 在本文中,我们 ...
- C++在单继承、多继承、虚继承时,构造函数、复制构造函数、赋值操作符、析构函数的执行顺序和执行内容
一.本文目的与说明 1. 本文目的:理清在各种继承时,构造函数.复制构造函数.赋值操作符.析构函数的执行顺序和执行内容. 2. 说明:虽然复制构造函数属于构造函数的一种,有共同的地方,但是也具有一定的 ...
- 转载:C++ 多继承和虚继承的内存布局
C++ 多继承和虚继承的内存布局[已翻译100%] 英文原文:Memory Layout for Multiple and Virtual Inheritance 标签: <无> run_ ...
- C++对象模型:单继承,多继承,虚继承
什么是对象模型 有两个概念可以解释C++对象模型: 语言中直接支持面向对象程序设计的部分.对于各种支持的底层实现机制. 类中成员分类 数据成员分为静态和非静态,成员函数有静态非静态以及虚函数 clas ...
- C++ 继承之虚继承与普通继承的内存分布
仅供互相学习,请勿喷,有观点欢迎指出~ class A { virtual void aa(){}; }; class B : public virtual A { ]; //加入一个变量是为了看清楚 ...
- C++对象模型:单继承,多继承,虚继承,菱形虚继承,及其内存布局图
C++目前使用的对象模型: 此模型下,nonstatic数据成员被置于每一个类的对象中,而static数据成员则被置于类对象之外,static和nonstatic函数也都放在类对象之外(通过函数指针指 ...
- C++ 的多继承与虚继承
C++之多继承与虚继承 1. 多继承 1.1 多继承概念 一个类有多个直接基类的继承关系称为多继承 多继承声明语法 class 派生类名 : 访问控制 基类名1, 访问控制 基类名2, ... { ...
- 2014 0416 word清楚项目黑点 输入矩阵 普通继承和虚继承 函数指针实现多态 强弱类型语言
1.word 如何清除项目黑点 选中文字区域,选择开始->样式->全部清除 2.公式编辑器输入矩阵 先输入方括号,接着选择格式->中间对齐,然后点下面红色框里的东西,组后输入数据 ...
- C++:钻石继承与虚继承
QUESTION:什么是钻石继承? ANSWER:假设我们已经有了两个类Father1和Father2,他们都是类GrandFather的子类.现在又有一个新类Son,这个新类通过多继承机制对类Fat ...
随机推荐
- Centos7 初始化硬盘分区、挂载
1.通过命令fdisk-l查看硬盘信息 可以看到有两块硬盘/dev/vda和/dev/vdb,启动vda是系统盘vdb是我们新增的数据盘. 2.执行以下命令,进入fdisk模式,开始对新增数据盘执行分 ...
- ln -s软链接文件算文件吗
场景: 开发A在windows环境下完成了开发,配置管理员cm搭建jenkins在centos环境下编译,cm编译失败,但是开发A在他的windows环境下可以编译过,最后发现是某几个so文件的软链接 ...
- git三、上传项目到github
1.创建github仓库 2.git clone url (克隆仓库到本地,如profect) 3.将项目复制到本地文件夹profect下 4.git add . (添加项目至缓存区) 5.git c ...
- 关于最小生成树(并查集)prime和kruskal
适合对并查集有一定理解的人. 新手可能看不懂吧.... 并查集简单点说就是将相关的2个数字联系起来 比如 房子 1 2 3 4 5 6 ...
- day18 python之re模块与正则表达式
正则表达式 正则表达式,就是匹配字符串内容的一种规则. 官方定义:正则表达式是对字符串操作的一种逻辑公式,就是用事先定义好的一些特定字符.及这些特定字符的组合,组成一个“规则字符串”,这个“规则字符串 ...
- shell脚本中各类括号的作用(小结)
技巧小结: 字符串比较用双中括号[[ ]]:算数比较用单中括号[ ]——左右留空格 算数运算用双小括号(( )) :shell命令及输出用小括号( )——左右不留空格 快速替换用花括号{ }——左右留 ...
- sublime快捷方式
- keil在线烧录突然提示 No target connected #
keil在线烧录突然提示 No target connected 运行环境 IDE:keil uvsion5 微处理器:STM32F0xx 系列 烧录器:ST-LINK/V2 问题描述 烧录新程序并进 ...
- Qt3D 5.9 and future
2017-05 http://blog.qt.io/blog/2017/05/24/qt3d/ Qt3D future 5.9 Use Qt Quick or QPainter to render i ...
- OxyPlot Controller OxyPlot控制器
Default input bindings The default input bindings in the PlotController are: Action Gesture Pan* Rig ...