动态多态 (Dynamic Polymorphism)
在 c++中为了实现多态,使用了一种动态绑定的技术,这个技术的核心就是虚函数表(virtual table)。下面就简单的说明一下基于虚表的动态绑定的原理,从而更好的与静态多态做比较。
在 c++中,每个包含虚函数的类都有一个虚表。我们来看下面这个类:
1// demo.cpp
2class A
3{
4public:
5 virtual void vfunc1();
6 virtual void vfunc2();
7 void func1();
8 void func2();
9
10private:
11 int m_data1, m_data2;
12};
我们可以借助编译器来查看上述类的对象布局:
1# 使用llvm编译工具
2clang -Xclang -fdump-record-layouts -stdlib=libc++ -c demo.cpp # 查看对象布局
3clang -Xclang -fdump-vtable-layouts -stdlib=libc++ -c demo.cpp # 查看虚表布局
4
5# 使用gcc编译工具
6g++ -fdump-lang-class demo.cpp
这里为了便于分析,使用 clang 打印的结果来具体说明:
1// clang -Xclang -fdump-record-layouts -stdlib=libc++ -c demo.cpp
2*** Dumping AST Record Layout
3 0 | class A
4 0 | (A vtable pointer)
5 8 | int m_data1
6 12 | int m_data2
7 | [sizeof=16, dsize=16, align=8,
8 | nvsize=16, nvalign=8]
9
10// clang -Xclang -fdump-vtable-layouts -stdlib=libc++ -c demo.cpp
11Original map
12Vtable for 'A' (4 entries).
13 0 | offset_to_top (0)
14 1 | A RTTI
15 -- (A, 0) vtable address --
16 2 | void A::vfunc1()
17 3 | void A::vfunc2()
18
19VTable indices for 'A' (2 entries).
20 0 | void A::vfunc1()
21 1 | void A::vfunc2()
根据对象布局可以简单画出class A
的对象布局图:
- offset_to_top(0):表示这个虚表地址距离对象顶部地址的偏移量,这里是 0,表示该虚表位于对象最顶端
- RTTI 指针:Run-Time Type Identification,通过运行时类型信息程序能够使用基类的指针或引用来检查这些指针或引用所指的对象的实际派生类型
- RTTI 下面就是虚函数表指针真正指向的地址,存储了类里面所有的虚函数
花了这么大力气,来讲解了类的对象布局和虚表,其实是为了给接下来类的继承和动态多态的实现做铺垫。我们在上面类的基础上,写实现一个派生类:
然后再通过工具打印出类的对象布局:
1// clang -Xclang -fdump-record-layouts -stdlib=libc++ -c demo.cpp
2*** Dumping AST Record Layout
3 0 | class A
4 0 | (A vtable pointer)
5 8 | int m_data1
6 12 | int m_data2
7 | [sizeof=16, dsize=16, align=8,
8 | nvsize=16, nvalign=8]
9
10*** Dumping AST Record Layout
11 0 | class B
12 0 | class A (primary base)
13 0 | (A vtable pointer)
14 8 | int m_data1
15 12 | int m_data2
16 | [sizeof=16, dsize=16, align=8,
17 | nvsize=16, nvalign=8]
18
19// clang -Xclang -fdump-vtable-layouts -stdlib=libc++ -c demo.cpp
20Original map
21 void B::vfunc1() -> void A::vfunc1()
22Vtable for 'B' (4 entries).
23 0 | offset_to_top (0)
24 1 | B RTTI
25 -- (A, 0) vtable address --
26 -- (B, 0) vtable address --
27 2 | void B::vfunc1()
28 3 | void A::vfunc2()
29
30VTable indices for 'B' (1 entries).
31 0 | void B::vfunc1()
32
33Original map
34 void B::vfunc1() -> void A::vfunc1()
35Vtable for 'A' (4 entries).
36 0 | offset_to_top (0)
37 1 | A RTTI
38 -- (A, 0) vtable address --
39 2 | void A::vfunc1()
40 3 | void A::vfunc2()
41
42VTable indices for 'A' (2 entries).
43 0 | void A::vfunc1()
44 1 | void A::vfunc2()
从上面的对象布局可以看出,子类 B 由于继承了 A,也拥有了虚表,并且 B 的虚表地址和父类 A 的虚表地址是相同的。
同时 B 和 A 一样,都占 16 个字节,前 8 个字节保存虚表指针,两个虚函数指针各占 4 个字节。而不同的是,由于子类 B 覆盖了vfunc1
,所以 B 的虚函数表中变成了void B::vfunc1()
。
基于上面的继承示例,我们可以很容易写出多态的代码 —— 父类引用指向子类对象:
用A
类类型指向B
类的对象,在调用的时候,会根据b
的 RTTI 来获取b
的实际类型为B
,然后调用vfunc1
和vfunc2
的时候会通过B
的虚表指针来找到vfunc1
和vfunc2
的具体位置。
因此,采用此类多态的调用,会增加一些额外的开销:
原因 | 时间开销 | 空间开销 |
---|---|---|
RTTI | 几次整形比较和一次取址操作(可能还会有 1、2 次整形加法) | 每个类多出一个 type_info 对象(包括类型 ID 和类名称) |
虚函数 | 一次整形加法和一次指针间接引用 | 每个类一个虚表,每个对象一个(通常情况下是一个)虚表指针,每个虚表指针占 8 字节 |
静态多态 (Static Polymorphism)
所谓静态多态,就是在程序在编译期就确定了对象类型和调用的函数地址,并生成对应的代码。 而 C++中常用来实现静态多态的方式就是 Curiously recurring template pattern 简称 CRTP。 CRTP 是 c++模板编程中的惯用模式,其主要特点是把派生类作为基类的模板参数。 翻译成代码就是:
1template<class T>
2class Base
3{
4 // methods within Base can use template to access members of Derived
5};
6class Derived : public Base<Derived>
7{
8 // ...
9};
下面我们通过一段代码来分析如何使用 CRTP 实现静态多态:
1#include <iostream>
2
3template<typename Derived> struct Base
4{
5 void interface()
6 {
7 static_cast<Derived*>(this)->implementation();
8 }
9 void implementation()
10 {
11 std::cout << "Implementation Base" << std::endl;
12 }
13};
14
15struct Derived1 : Base<Derived1>
16{
17 void implementation() { std::cout << "Implementation Derived1" << std::endl; }
18};
19
20struct Derived2 : Base<Derived2>
21{
22 void implementation() { std::cout << "Implementation Derived2" << std::endl; }
23};
24
25struct Derived3 : Base<Derived3>
26{};
27
28template<typename T>
29void execute(T& base)
30{
31 base.interface();
32}
33
34int main()
35{
36 Derived1 d1;
37 execute(d1);
38 Derived2 d2;
39 execute(d2);
40 Derived3 d3;
41 execute(d3);
42 std::cout << '\n';
43}
程序运行的结果是:
这里通过execute
模板函数来执行静态多态,调用参数base
的interface
方法。Base::interface
方法是 CRTP 机制的关键,
它通过static_cast<Derived*>(this)->implementation()
来调用子类的implementation
方法。由于Derived1
和Derived2
都
实现了自己的implementation
方法,所以这里使用的是他们实现,而Derived3
没有实现自己的implementation
方法,所以
Base::implementation
就充当了默认实现。这个例子没有使用任何虚函数,就实现了多态的效果。同样地,使用编译器打印对象布局:
1*** Dumping AST Record Layout
2 0 | struct Base<struct Derived1> (empty)
3 | [sizeof=1, dsize=1, align=1,
4 | nvsize=1, nvalign=1]
5
6*** Dumping AST Record Layout
7 0 | struct Derived1 (empty)
8 0 | struct Base<struct Derived1> (base) (empty)
9 | [sizeof=1, dsize=1, align=1,
10 | nvsize=1, nvalign=1]
11
12*** Dumping AST Record Layout
13 0 | struct Base<struct Derived2> (empty)
14 | [sizeof=1, dsize=1, align=1,
15 | nvsize=1, nvalign=1]
16
17*** Dumping AST Record Layout
18 0 | struct Derived2 (empty)
19 0 | struct Base<struct Derived2> (base) (empty)
20 | [sizeof=1, dsize=1, align=1,
21 | nvsize=1, nvalign=1]
22
23*** Dumping AST Record Layout
24 0 | struct Base<struct Derived3> (empty)
25 | [sizeof=1, dsize=1, align=1,
26 | nvsize=1, nvalign=1]
27
28*** Dumping AST Record Layout
29 0 | struct Derived3 (empty)
30 0 | struct Base<struct Derived3> (base) (empty)
31 | [sizeof=1, dsize=1, align=1,
32 | nvsize=1, nvalign=1]
我们不难发现,对象中不包含任何虚表。
动态多态和静态多态的对比
动态多态发生在运行时,而静态多态发生在编译时。动态多态通常在运行时需要一个指针间接寻址,因此会有额外的性能开销,而静态多态的对象类型和函数是在编译时确定的,因此不会产生额外的性能开销。同时静态多态也不需要为每个类创建虚表,因此在空间上也不会像动态多态那样产生额外的消耗。
评论