文章标题

C++Bind 在容器和算法中的使用


声明该文章转译自网络,如有错误之处请指正。 [原文地址]

1.如何使用bind

如果你手头上已经有了支持C++11 标准的编译器和标准库,你可以通过如下的代码。

    #include 
    //the following are for convenience in this handout code
    using namespace std;
    using namespace std::placeholders;! // needed for _1, _2, etc`

构建一个带参函数

bind 模版一个创建并返回一个函数对象,这个函数对象封装调用的函数指针,它的基本形式如下:
bind(function pointer, bound arguments)
例如,现在有个名为sum3的函数,该函数返回3个int类型的累加和。
c++
int sum3(int x, int y, int z)
{
int sum = x+y+z;
cout << x << '+' << y << '+' << z << '=' << sum << endl;
return sum;
}

现在使用bind函数来绑定sum3函数创建一个函数指针,然后调用该函数指针。

你可能感兴趣的:(文章标题)