From 16cade975222fb80772dad37da1a59b4d439daf1 Mon Sep 17 00:00:00 2001 From: light-city <455954986@qq.com> Date: Wed, 24 Jul 2019 22:13:01 +0800 Subject: [PATCH] update dir --- README.md | 1 + virtual/README.md | 27 ++++ virtual/set2/default_arg.cpp | 39 ++++++ virtual/set3/copy_consrtuct.cpp | 41 ++++++ virtual/set3/full_virde.cpp | 39 ++++++ virtual/set3/static_error.cpp | 13 ++ virtual/set3/vir_con.cpp | 206 +++++++++++++++++++++++++++++ virtual/set3/vir_de.cpp | 41 ++++++ virtual/set3/virtual_function.cpp | 33 +++++ virtual/set3/virtual_function1.cpp | 22 +++ virtual/set3/virtual_inline.cpp | 44 ++++++ virtual/set4/rtti | Bin 0 -> 14944 bytes virtual/set4/rtti.cpp | 34 +++++ virtual/set4/warn_rtti.cpp | 35 +++++ 14 files changed, 575 insertions(+) create mode 100644 virtual/README.md create mode 100644 virtual/set2/default_arg.cpp create mode 100644 virtual/set3/copy_consrtuct.cpp create mode 100644 virtual/set3/full_virde.cpp create mode 100644 virtual/set3/static_error.cpp create mode 100644 virtual/set3/vir_con.cpp create mode 100644 virtual/set3/vir_de.cpp create mode 100644 virtual/set3/virtual_function.cpp create mode 100644 virtual/set3/virtual_function1.cpp create mode 100644 virtual/set3/virtual_inline.cpp create mode 100755 virtual/set4/rtti create mode 100644 virtual/set4/rtti.cpp create mode 100644 virtual/set4/warn_rtti.cpp diff --git a/README.md b/README.md index bde6487..08adbfd 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ - [x] [函数指针那些事](./func_pointer) - [x] [纯虚函数和抽象类那些事](./abstract) - [x] [vptr_vtable那些事](./vptr_vtable) +- [x] [virtual那些事](./virtual) ## 关于作者: diff --git a/virtual/README.md b/virtual/README.md new file mode 100644 index 0000000..0a84aad --- /dev/null +++ b/virtual/README.md @@ -0,0 +1,27 @@ +# virtual那些事 + +## 关于作者: + +个人公众号: + +![](../img/wechat.jpg) + +## 1.虚函数与运行多态 + +对应的代码:[emp.cpp](./set1/emp.cpp) + +**虚函数的调用取决于指向或者引用的对象的类型,而不是指针或者引用自身的类型。** + +## 2.vptr与vtable + +见[vptr_vtable那些事](../vptr_vtable) + +## 3.虚函数中默认参数 + +对应的代码:[default_arg.cpp](./set2/default_arg.cpp) + +**默认参数是静态绑定的,虚函数是动态绑定的。 默认参数的使用需要看指针或者引用本身的类型,而不是对象的类型**。 + +## 4.可以不可以 + +(1) **静态函数可以声明为虚函数吗?** \ No newline at end of file diff --git a/virtual/set2/default_arg.cpp b/virtual/set2/default_arg.cpp new file mode 100644 index 0000000..4797818 --- /dev/null +++ b/virtual/set2/default_arg.cpp @@ -0,0 +1,39 @@ +/** + * @file first_example.cpp + * @brief 虚函数中默认参数 + * 规则:虚函数是动态绑定的,默认参数是静态绑定的。默认参数的使用需要看指针或者应用本身的类型,而不是对象的类型! + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ + +#include +using namespace std; + +class Base +{ + public: + virtual void fun ( int x = 10 ) + { + cout << "Base::fun(), x = " << x << endl; + } +}; + +class Derived : public Base +{ + public: + virtual void fun ( int x=20 ) + { + cout << "Derived::fun(), x = " << x << endl; + } +}; + + +int main() +{ + Derived d1; + Base *bp = &d1; + bp->fun(); // 10 + return 0; +} + diff --git a/virtual/set3/copy_consrtuct.cpp b/virtual/set3/copy_consrtuct.cpp new file mode 100644 index 0000000..e65ca89 --- /dev/null +++ b/virtual/set3/copy_consrtuct.cpp @@ -0,0 +1,41 @@ +#include +using namespace std; + +class Base +{ + public: + +}; + +class Derived : public Base +{ + public: + Derived() + { + cout << "Derived created" << endl; + } + + Derived(const Derived &rhs) + { + cout << "Derived created by deep copy" << endl; + } + + ~Derived() + { + cout << "Derived destroyed" << endl; + } +}; + +int main() +{ + Derived s1; + + Derived s2 = s1; // Compiler invokes "copy constructor" + // Type of s1 and s2 are concrete to compiler + + // How can we create Derived1 or Derived2 object + // from pointer (reference) to Base class pointing Derived object? + + return 0; +} + diff --git a/virtual/set3/full_virde.cpp b/virtual/set3/full_virde.cpp new file mode 100644 index 0000000..d4ef7a8 --- /dev/null +++ b/virtual/set3/full_virde.cpp @@ -0,0 +1,39 @@ +/** + * @file full_virde.cpp + * @brief 将基类的析构函数声明为虚函数 + * 输出结果: + * Constructing base + * Constructing derived + * Destructing derived + * Destructing base + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ +#include + +using namespace std; + +class base { + public: + base() + { cout<<"Constructing base \n"; } + virtual ~base() + { cout<<"Destructing base \n"; } +}; + +class derived: public base { + public: + derived() + { cout<<"Constructing derived \n"; } + ~derived() + { cout<<"Destructing derived \n"; } +}; + +int main(void) +{ + derived *d = new derived(); + base *b = d; + delete b; + return 0; +} diff --git a/virtual/set3/static_error.cpp b/virtual/set3/static_error.cpp new file mode 100644 index 0000000..5a79667 --- /dev/null +++ b/virtual/set3/static_error.cpp @@ -0,0 +1,13 @@ +/** + * @file static_error.cpp + * @brief 静态函数不可以声明为虚函数,同时也不能被const和volatile关键字修饰! + * 原因如下: + * static成员函数不属于任何类对象或类实例,所以即使给此函数加上virutal也是没有任何意义 + * 虚函数依靠vptr和vtable来处理。vptr是一个指针,在类的构造函数中创建生成,并且只能用this指针来访问它,静态成员函数没有this指针,所以无法访问vptr。 + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ + +virtual static void fun() { } +static void fun() const { } diff --git a/virtual/set3/vir_con.cpp b/virtual/set3/vir_con.cpp new file mode 100644 index 0000000..78c4a07 --- /dev/null +++ b/virtual/set3/vir_con.cpp @@ -0,0 +1,206 @@ +/** + * @file vir_con.cpp + * @brief 构造函数不可以声明为虚函数。同时除了inline之外,构造函数不允许使用其它任何关键字。 + * + * 为什么构造函数不可以为虚函数? + * + * 尽管虚函数表vtable是在编译阶段就已经建立的,但指向虚函数表的指针vptr是在运行阶段实例化对象时才产生的。 如果类含有虚函数,编译器会在构造函数中添加代码来创建vptr。 问题来了,如果构造函数是虚的,那么它需要vptr来访问vtable,可这个时候vptr还没产生。 因此,构造函数不可以为虚函数。 + * 我们之所以使用虚函数,是因为需要在信息不全的情况下进行多态运行。而构造函数是用来初始化实例的,实例的类型必须是明确的。 + * 因此,构造函数没有必要被声明为虚函数。 + * 尽管构造函数不可以为虚函数,但是有些场景下我们确实需要 “Virtual Copy Constructor”。 “虚复制构造函数”的说法并不严谨,其只是一个实现了对象复制的功能的类内函数。 举一个应用场景,比如剪切板功能。 复制内容作为基类,但派生类可能包含文字、图片、视频等等。 我们只有在程序运行的时候才知道我们需要复制的具体是什么类型的数据。 + * + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ + +#include +using namespace std; + +//// LIBRARY SRART +class Base +{ + public: + Base() { } + + virtual // Ensures to invoke actual object destructor + ~Base() { } + + virtual void ChangeAttributes() = 0; + + // The "Virtual Constructor" + static Base *Create(int id); + + // The "Virtual Copy Constructor" + virtual Base *Clone() = 0; +}; + +class Derived1 : public Base +{ + public: + Derived1() + { + cout << "Derived1 created" << endl; + } + + Derived1(const Derived1& rhs) + { + cout << "Derived1 created by deep copy" << endl; + } + + ~Derived1() + { + cout << "~Derived1 destroyed" << endl; + } + + void ChangeAttributes() + { + cout << "Derived1 Attributes Changed" << endl; + } + + Base *Clone() + { + return new Derived1(*this); + } +}; + +class Derived2 : public Base +{ + public: + Derived2() + { + cout << "Derived2 created" << endl; + } + + Derived2(const Derived2& rhs) + { + cout << "Derived2 created by deep copy" << endl; + } + + ~Derived2() + { + cout << "~Derived2 destroyed" << endl; + } + + void ChangeAttributes() + { + cout << "Derived2 Attributes Changed" << endl; + } + + Base *Clone() + { + return new Derived2(*this); + } +}; + +class Derived3 : public Base +{ + public: + Derived3() + { + cout << "Derived3 created" << endl; + } + + Derived3(const Derived3& rhs) + { + cout << "Derived3 created by deep copy" << endl; + } + + ~Derived3() + { + cout << "~Derived3 destroyed" << endl; + } + + void ChangeAttributes() + { + cout << "Derived3 Attributes Changed" << endl; + } + + Base *Clone() + { + return new Derived3(*this); + } +}; + +// We can also declare "Create" outside Base. +// But is more relevant to limit it's scope to Base +Base *Base::Create(int id) +{ + // Just expand the if-else ladder, if new Derived class is created + // User need not be recompiled to create newly added class objects + + if( id == 1 ) + { + return new Derived1; + } + else if( id == 2 ) + { + return new Derived2; + } + else + { + return new Derived3; + } +} +//// LIBRARY END + +//// UTILITY SRART +class User +{ + public: + User() : pBase(0) + { + // Creates any object of Base heirarchey at runtime + + int input; + + cout << "Enter ID (1, 2 or 3): "; + cin >> input; + + while( (input != 1) && (input != 2) && (input != 3) ) + { + cout << "Enter ID (1, 2 or 3 only): "; + cin >> input; + } + + // Create objects via the "Virtual Constructor" + pBase = Base::Create(input); + } + + ~User() + { + if( pBase ) + { + delete pBase; + pBase = 0; + } + } + + void Action() + { + // Duplicate current object + Base *pNewBase = pBase->Clone(); + + // Change its attributes + pNewBase->ChangeAttributes(); + + // Dispose the created object + delete pNewBase; + } + + private: + Base *pBase; +}; + +//// UTILITY END + +//// Consumer of User (UTILITY) class +int main() +{ + User *user = new User(); + + user->Action(); + + delete user; +} + diff --git a/virtual/set3/vir_de.cpp b/virtual/set3/vir_de.cpp new file mode 100644 index 0000000..79c7c65 --- /dev/null +++ b/virtual/set3/vir_de.cpp @@ -0,0 +1,41 @@ +/** + * @file vir_de.cpp + * @brief 派生类的析构函数没有被调用! + * 输出结果: + * Constructing base + * Constructing derived + * Destructing base + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ + +// CPP program without virtual destructor +// causing undefined behavior +#include + +using namespace std; + +class base { + public: + base() + { cout<<"Constructing base \n"; } + ~base() + { cout<<"Destructing base \n"; } +}; + +class derived: public base { + public: + derived() + { cout<<"Constructing derived \n"; } + ~derived() + { cout<<"Destructing derived \n"; } +}; + +int main(void) +{ + derived *d = new derived(); + base *b = d; + delete b; + return 0; +} diff --git a/virtual/set3/virtual_function.cpp b/virtual/set3/virtual_function.cpp new file mode 100644 index 0000000..1b6d039 --- /dev/null +++ b/virtual/set3/virtual_function.cpp @@ -0,0 +1,33 @@ +/** + * @file virtual_function.cpp + * @brief 虚函数可以被私有化,但有一些细节需要注意。 + * 基类指针指向继承类对象,则调用继承类对象的函数; + * int main()必须声明为Base类的友元,否则编译失败。 编译器报错: ptr无法访问私有函数。 + * 当然,把基类声明为public, 继承类为private,该问题就不存在了。----> 见另外一个例子! + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ + +#include +using namespace std; + +class Derived; + +class Base { + private: + virtual void fun() { cout << "Base Fun"; } + friend int main(); +}; + +class Derived: public Base { + public: + void fun() { cout << "Derived Fun"; } +}; + +int main() +{ + Base *ptr = new Derived; + ptr->fun(); + return 0; +} diff --git a/virtual/set3/virtual_function1.cpp b/virtual/set3/virtual_function1.cpp new file mode 100644 index 0000000..27648e1 --- /dev/null +++ b/virtual/set3/virtual_function1.cpp @@ -0,0 +1,22 @@ +#include +using namespace std; + +class Derived; + +class Base { + public: + virtual void fun() { cout << "Base Fun"; } + // friend int main(); +}; + +class Derived: public Base { + private: + void fun() { cout << "Derived Fun"; } +}; + +int main() +{ + Base *ptr = new Derived; + ptr->fun(); + return 0; +} diff --git a/virtual/set3/virtual_inline.cpp b/virtual/set3/virtual_inline.cpp new file mode 100644 index 0000000..ac89964 --- /dev/null +++ b/virtual/set3/virtual_inline.cpp @@ -0,0 +1,44 @@ +/** + * @file virtual_inline.cpp + * @brief 通常类成员函数都会被编译器考虑是否进行内联。 + * 但通过基类指针或者引用调用的虚函数必定不能被内联。 + * 当然,实体对象调用虚函数或者静态调用时可以被内联,虚析构函数的静态调用也一定会被内联展开。 + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ + +#include +using namespace std; +class Base +{ + public: + virtual void who() + { + cout << "I am Base\n"; + } +}; +class Derived: public Base +{ + public: + void who() + { + cout << "I am Derived\n"; + } +}; + +int main() +{ + // note here virtual function who() is called through + // object of the class (it will be resolved at compile + // time) so it can be inlined. + Base b; + b.who(); + + // Here virtual function is called through pointer, + // so it cannot be inlined + Base *ptr = new Derived(); + ptr->who(); + + return 0; +} diff --git a/virtual/set4/rtti b/virtual/set4/rtti new file mode 100755 index 0000000000000000000000000000000000000000..c7cb891947c159533e2642f0e4a220670dcf1fcf GIT binary patch literal 14944 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 Nc;HR8SZ~FO{{~3pA-Mnm literal 0 HcmV?d00001 diff --git a/virtual/set4/rtti.cpp b/virtual/set4/rtti.cpp new file mode 100644 index 0000000..649687e --- /dev/null +++ b/virtual/set4/rtti.cpp @@ -0,0 +1,34 @@ +/** + * @file rtti.cpp + * @brief 在面向对象程序设计中,有时我们需要在运行时查询一个对象是否能作为某种多态类型使用。与Java的instanceof,以及C#的as、is运算符类似,C++提供了dynamic_cast函数用于动态转型。相比C风格的强制类型转换和C++ reinterpret_cast,dynamic_cast提供了类型安全检查,是一种基于能力查询(Capability Query)的转换,所以在多态类型间进行转换更提倡采用dynamic_cast + * @author 光城 + * @version v1 + * @date 2019-07-24 + */ + +// CPP program to illustrate +// // Run Time Type Identification +#include +#include +using namespace std; +class B { virtual void fun() {} }; +class D: public B { }; + +int main() +{ + B *b = new D; // 向上转型 + B &obj = *b; + D *d = dynamic_cast(b); // 向下转型 + if(d != NULL) + cout << "works"<(obj); + cout << "works"<