代码在:VCCommon/functionDemo
类模板 std :: function 是一个通用的多态函数包装器。 std :: function 的实例可以存储,复制和调用任何可调用的目标 :包括函数,lambda表达式,绑定表达式或其他函数对象,以及指向成员函数和指向数据成员的指针。当std::function对象未包裹任何实际的可调用元素,调用该 std::function 对象将抛出std::bad_function_call 异常。
#include
#include
using namespace std;
// c type global function
int c_func(int a, int b)
{
return a + b;
}
int main()
{
typedef int(*Func)(int ,int);
Func f1 = c_func;
cout<< f1(1,2)<f2 = c_func;
cout<
从上面我们可以看出,使用C++11的function类调用函数方便多了。
template< class R, class... Args >
class function;
模板参数说明:
例如:function
则 function 类的实例 func 可以指向返回值为int型,有两个形参都为int型的函数。
虽然是function是类模板,但其只有成员函数,无数据成员。
成员函数声明 | 说明 |
---|---|
constructor | 构造函数:constructs a new std::function instance |
destructor | 析构函数: destroys a std::function instance |
operator= | 给定义的function对象赋值 |
operator bool | 检查定义的function对象是否包含一个有效的对象 |
operator() | 调用一个对象 |
非模板
#include
#include
int f(int a, int b)
{
return a+b;
}
int main()
{
std::functionfunc = f;
cout<
有模板
#include
#include
template
T f(T a, T b)
{
return a+b;
}
int main()
{
std::functionfunc = f;
cout<
非模板
#include
#include
using namespace std;
//function object
struct functor // or class functor
{
public:
int operator() (int a, int b)
{
return a + b;
}
};
int main()
{
functor ft;
function func = ft();
cout<
有模板
#include
#include
using namespace std;
//function object
template
struct functor // or class functor
{
public:
T operator() (T a, T b)
{
return a + b;
}
};
int main()
{
functor ft;
function func = ft;
//function func = functor();
cout<
#include
#include
using namespace std;
int main()
{
auto f = [](const int a, const int b) { return a + b; };
std::functionfunc = f;
cout << func(1, 2) << endl; // 3
system("pause");
return 0;
}
非模板
#include
#include
using namespace std;
class Plus
{
public:
static int plus(int a, int b)
{
return a + b;
}
};
int main()
{
function f = Plus::plus;
//function f = &Plus::plus;
cout << f(1, 2) << endl; //3
system("pause");
return 0;
}
有模板
#include
#include
using namespace std;
class Plus
{
public:
template
static T plus(T a, T b)
{
return a + b;
}
};
int main()
{
function f = Plus::plus;
//function f = &Plus::plus;
cout << f(1, 2) << endl; //3
system("pause");
return 0;
}
非模板
#include
#include
using namespace std;
class Plus
{
public:
int plus(int a, int b)
{
return a + b;
}
};
int main()
{
Plus p;
function f = &Plus::plus;
function f2 = &Plus::plus;
cout << f(p,1, 2) << endl; //3
cout << f2(p,1, 2) << endl; //3
system("pause");
return 0;
}
有模板
#include
#include
using namespace std;
class Plus
{
public:
template
T plus(T a, T b)
{
return a + b;
}
};
int main()
{
Plus p;
function f = &Plus::plus;
function f2 = &Plus::plus;
cout << f(p,1, 2) << endl; //3
cout << f2(p,1, 2) << endl; //3
system("pause");
return 0;
}
非模板
#include
#include
using namespace std;
class Plus
{
public:
Plus(int num_):num(num_){}
int num;
};
int main()
{
Plus p(2);
function f = &Plus::num;
function f2 = &Plus::num;
cout << f(p) << endl; //2
cout << f2(p) << endl;
system("pause");
return 0;
}
#include
#include
using namespace std;
template
class Plus
{
public:
Plus(T num_):num(num_){}
T num;
};
int main()
{
Plus p(2);
function&)> f = &Plus::num;
function)> f2 = &Plus::num;
cout << f(p) << endl; //2
cout << f2(p) << endl; //2
system("pause");
return 0;
}
非模板
#include
#include
using namespace std;
class Plus
{
public:
int plus(int a, int b)
{
return a + b;
}
};
class Plus2
{
public:
static int plus(int a, int b)
{
return a + b;
}
};
int main()
{
Plus p;
// 指针形式调用成员函数
function f1 = bind(&Plus::plus, &p, placeholders::_1, placeholders::_2);// placeholders::_1是占位符
// 对象形式调用成员函数
function f2 = bind(&Plus::plus, p, placeholders::_1, placeholders::_2);// placeholders::_1是占位符
cout << f1(1, 2) << endl; //3
cout << f2(1, 2) << endl; //3
Plus2 p2;
// 指针形式调用成员函数
function f3 = bind(Plus2::plus, placeholders::_1, placeholders::_2);// placeholders::_1是占位符
cout << f3(1, 2) << endl; //3
system("pause");
return 0;
}
有模板
#include
#include
using namespace std;
class Math
{
public:
template
T Minus(T i, T j)
{
return i - j;
}
};
int main()
{
Math m;
function f = bind(&Math::Minus, &m, placeholders::_1, placeholders::_2);
cout << f(1, 2) << endl; // -1
return 1;
}
#include
#include
该文章持续更新,欢迎大家批评指正。
推荐一个零声学院免费公开课程,个人觉得老师讲得不错,
分享给大家:[Linux,Nginx,ZeroMQ,MySQL,Redis,
fastdfs,MongoDB,ZK,流媒体,CDN,P2P,K8S,Docker,
TCP/IP,协程,DPDK等技术内容,点击立即学习:
服务器课程:C++服务器