C++11之std::bind感悟
Posted kaifangqu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++11之std::bind感悟相关的知识,希望对你有一定的参考价值。
之前查询资料时发现使用std::bind可以很好的实现设计模式之中的观察者模式.
但所调用bind绑定的函数比较难实现继承.使用多级指针实现继承.
示例代码如下:
编译环境:VS2017
1 #include "pch.h" 2 #include <iostream> 3 #include <vector> 4 #include <functional> 5 class Base 6 7 public: 8 virtual void printMsg() std::cout << "Base Class" << std::endl; 9 ; 10 11 class Derive :public Base 12 13 public: 14 virtual void printMsg() std::cout << "Derive Class" << std::endl; 15 ; 16 17 class TestClass 18 19 public: 20 void PrintMsg(Base **ppbase) (*ppbase)->printMsg(); 21 ; 22 23 int main() 24 25 std::vector<std::function<void(Base**)>>vec1; 26 TestClass *ptest = new TestClass(); 27 Base* pbase = new Base(); 28 Base* pder = new Derive(); 29 Base** ppbase = &pbase;//增加子类 30 vec1.push_back(std::bind(&TestClass::PrintMsg, ptest, ppbase)); 31 *ppbase = pder;//赋值 32 vec1[0](NULL); 33 34 return 0; 35
如果删除第29和31行,显示Base Class,加上的话,显示Derive Class。这是因为在调用的时候,地址上的指针已经发生了变化.
以上是关于C++11之std::bind感悟的主要内容,如果未能解决你的问题,请参考以下文章
C++11新特性应用--实现延时求值(std::function和std::bind)
C11新特性之std::function与std::bind