c++ 11 中 function,lambda,bind

简介: c++ 11 中 function,lambda,bind

c++ 11 中 function,lambda,bind之间关系

  • 什么是 function、 lambda,bind?用来做什么?怎么用?
  • function,lambda,bind 之间有什么关系?
  • 具体怎么实现?

function 实例

//function 是一个抽象了函数参数以及函数返回值的类模板
#include <functional>
#include <iostream>
#include <algorithm>
using namespace std;
void hello(int count) {
    cout << "hello gq:" << count << endl;
}
class StaticFunc {
public: 
    static void hello(int count) {
        cout << "StaticFunc::hello gq:" << count << endl; 
    }
};
class Hello {
public: 
    void operator() (int count) {
        i += count;
        cout << "Hello::hello gq:" << i << endl;
    }
    void operator() (int a, int b) {
        cout << "Hello::hello gq:a+b=" << a + b << endl;
    }
    int i = 0;
};
class CHello {
public:
    void hello(int count) {
        cout << "CHello::hello gq:" << count << endl; 
    }
};
class LambdaHello {  //注意:类比lambda表达式展开
public:
    LambdaHello(int _i) : i(_i) {}
    void operator()(int count) {
        i ++;
        cout << "lambda hello gq:" << count << " i=" << i << endl;
    }
private:
    int i;
};
class BindHello {  //相当于auto f_hello9 = bind(&hello, 9); 的展开
public:
    BindHello(function<void(int)> _fn, int _count) : fn(_fn), count(_count) {};
    void operator()() {
        fn(count);
    }
private:
    function<void(int)> fn;
    int count;
};
class BindCHello {  //相当于f_hello11 = bind(&CHello::hello, &c, placeholders::_1); 的展开
public:
    typedef void (CHello::*Fn)(int);
    BindCHello(Fn _fn, CHello *_c) : fn(_fn), c(_c) {}
    void operator() (int count) {
        (c->*fn)(count);
    }
private:
    Fn fn;
    CHello* c;
};
int main(){
    function<void(int)> f_hello1 = hello;  //保存普通函数;<void(int)>抽象函数参数和返回值
    f_hello1(1);  //hello gq:1
    function<void(int)> f_hello2 = &hello; //指向具体函数的地址或者具体函数
    f_hello2(1);  //hello gq:1
    function<void(int)> f_hello3 = &StaticFunc::hello;  //保存类的静态成员函数
    f_hello3(2);  //StaticFunc::hello gq:2
    cout << "======保存仿函数:有状态,通过成员变量进行存储状态:======" << endl;
    function<void(int)> f_hello4 = Hello();  //调用默认构造生成仿函数对象
    f_hello4(4);  //Hello::hello gq:4
    f_hello4(4);  //Hello::hello gq:8
    function<void(int,int)> f_hello5 = Hello();
    f_hello5(5, 6);  //Hello::hello gq:a+b=11
    cout << "======保存类成员函数======" << endl;
    function<void(CHello*, int)> f_hello6 = &CHello::hello;
    CHello c;
    f_hello6(&c, 7);  //CHello::hello gq:7
    cout << "======保存lambda表达式======" << endl;
    int i = 0;
    auto f_hello7 = [i](int count) mutable -> void {  //如若修改外部变量则采用[&i]
        i ++;
        cout << "lambda hello gq:" << count << " i=" << i << endl;
    };
    f_hello7(8);  //lambda hello gq:8 i=1
    f_hello7(8);  //lambda hello gq:8 i=2
    cout << "外部变量 i=" << i << "不修改外部变量" << endl; 
    auto f_hello8 = LambdaHello(i);  //这里 i 参数相当于值传递
    f_hello8(9);  //lambda hello gq:9 i=1
    cout << "======保存bind返回的函数对象======" << endl;
    auto f_hello9 = bind(&hello, 9);  //绑定普通函数 对应 
    f_hello9();  //hello gq:9
    auto f_hello10 = bind(&CHello::hello, &c, 10);  //绑定类成员函数
    f_hello10();  //CHello::hello gq:10
    auto f_hello11 = bind(&CHello::hello, &c, placeholders::_1);  //提供占位符
    f_hello11(11);  //CHello::hello gq:11
    auto f_hello12 = BindHello(&hello, 9);  //等价于f_hello9()
    f_hello12();  //hello gq:9
    auto f_hello13 = BindCHello(&CHello::hello, &c);  //等价于f_hello11()
    f_hello13(11);  //CHello::hello gq:11
    return 0;
}
代码执行结果:
hello gq:1
hello gq:1
StaticFunc::hello gq:2
======保存仿函数:有状态,通过成员变量进行存储状态:======
Hello::hello gq:4
Hello::hello gq:8
Hello::hello gq:a+b=11
======保存类成员函数======
CHello::hello gq:7
======保存lambda表达式======
lambda hello gq:8 i=1
lambda hello gq:8 i=2
外部变量 i=0不修改外部变量
lambda hello gq:9 i=1
======保存bind返回的函数对象======
hello gq:9
CHello::hello gq:10
CHello::hello gq:11
hello gq:9
CHello::hello gq:11

注意:

  • lambda 表达式展开类比。
  • bind 绑定普通成员函数展开。
  • bind 绑定类成员函数展开。

充电站

推荐一个零声学院免费公开课程,个人觉得老师讲得不错,分享给大家:Linux,Nginx,ZeroMQ,MySQL,Redis,fastdfs,MongoDB,ZK,流媒体,CDN,P2P,K8S,Docker,TCP/IP,协程,DPDK等技术内容,立即学习

相关文章
|
2月前
|
存储 算法 程序员
C++ 11新特性之function
C++ 11新特性之function
37 9
|
2月前
|
存储 编译器 调度
C++ 11新特性之bind
C++ 11新特性之bind
34 1
|
1月前
|
C++ 容器
函数对象包装器function和bind机制
函数对象包装器function和bind机制
18 0
|
2月前
|
算法 编译器 程序员
C++ 11新特性之Lambda表达式
C++ 11新特性之Lambda表达式
17 0
|
4月前
|
存储 C++ 运维
开发与运维函数问题之使用C++标准库中的std::function来简化回调函数的使用如何解决
开发与运维函数问题之使用C++标准库中的std::function来简化回调函数的使用如何解决
52 6
|
4月前
|
安全 编译器 C++
C++一分钟之-泛型Lambda表达式
【7月更文挑战第16天】C++14引入泛型lambda,允许lambda接受任意类型参数,如`[](auto a, auto b) { return a + b; }`。但这也带来类型推导失败、隐式转换和模板参数推导等问题。要避免这些问题,可以明确类型约束、限制隐式转换或显式指定模板参数。示例中,`safeAdd` lambda使用`static_assert`确保只对算术类型执行,展示了一种安全使用泛型lambda的方法。
62 1
|
5月前
|
算法 编译器 C++
C++一分钟之—Lambda表达式初探
【6月更文挑战第22天】C++的Lambda表达式是匿名函数的快捷方式,增强函数式编程能力。基本语法:`[capture](params) -&gt; ret_type { body }`。例如,简单的加法lambda:`[](int a, int b) { return a + b; }`。Lambda可用于捕获外部变量(值/引用),作为函数参数,如在`std::sort`中定制比较。注意点包括正确使用捕获列表、`mutable`关键字和返回类型推导。通过实践和理解这些概念,可以写出更简洁高效的C++代码。
54 13
|
4月前
|
存储 C++
【C++】string类的使用③(非成员函数重载Non-member function overloads)
这篇文章探讨了C++中`std::string`的`replace`和`swap`函数以及非成员函数重载。`replace`提供了多种方式替换字符串中的部分内容,包括使用字符串、子串、字符、字符数组和填充字符。`swap`函数用于交换两个`string`对象的内容,成员函数版本效率更高。非成员函数重载包括`operator+`实现字符串连接,关系运算符(如`==`, `&lt;`等)用于比较字符串,以及`swap`非成员函数。此外,还介绍了`getline`函数,用于按指定分隔符从输入流中读取字符串。文章强调了非成员函数在特定情况下的作用,并给出了多个示例代码。
|
5月前
|
C++
C++语言的lambda表达式
C++从函数对象到lambda表达式以及操作参数化
|
5月前
|
计算机视觉 C++
【见微知著】OpenCV中C++11 lambda方式急速像素遍历
【见微知著】OpenCV中C++11 lambda方式急速像素遍历
50 0

热门文章

最新文章