C++11 std::function 和 std::bind

1 std::bind

std::bind 可以用来绑定一个函数 std::placeholders; 定义有_1_2_3 ...

#include 
using namespace std;
using namespace std::placeholders;

int f(int, char, double);
int main()
{
    // 翻转参数顺序
    auto frev = bind(f, _3, _2, _1);
    int x = frev(1.2, 'w', 7);
    cout<

2 std::function

std::function 可以用来定义一个函数

int add(int a, int b){
    return a+b;
}
auto mod=[](int a, int b){return a%b;};

struct divide{
    int operator()(int m, int n){
        return m/n;
    }
};


int main()
{
    function func1= add;
    function func2= mod;
    function func3= divide();
    cout<

你可能感兴趣的:(C++11 std::function 和 std::bind)