c++11新特性遇见一个记一个

c++11新特性遇见一个记一个
std::function

std::function
std::function是函数模板类(是一个类);std::bind是函数模板(是一个函数);
#include
#include
#include

using namespace std;

void hello(){
cout << "hello" << endl; } class A { public: void fun(){}; static void fun2(){}; private: static void fun3(){}; }; int main () { void(*p)() = hello; p(); // function 是个函数模板类, fun

c++11新特性遇见一个记一个最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/3955.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>