码迷,mamicode.com
首页 > 其他好文 > 详细

lambda表达式

时间:2014-08-31 22:59:32      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   使用   io   ar   for   


  1. lambda表达式

//C++ 11中的Lambda表达式用于定义并创建匿名的函数对象,以简化编程工作。Lambda的语法形式如下:

//[函数对象参数](操作符重载函数参数)mutableexception声明->返回值类型{ 函数体 }

 

//可以看到,Lambda主要分为五个部分:

//[函数对象参数](操作符重载函数参数)mutableexception声明、->返回值类型、{ 函数体 }。下面分别进行介绍。

//一、[函数对象参数],标识一个Lambda的开始,这部分必须存在,不能省略。函数对象参数是传递给编译器自动生成的函数对象类的构造函数的。

//函数对象参数只能使用那些到定义Lambda为止时Lambda所在作用范围内可见的局部变量(包括Lambda所在类的this)。函数对象参数有以下形式:

//1、空。没有使用任何函数对象参数。

//2 = 。函数体内可以使用Lambda所在作用范围内所有可见的局部变量(包括Lambda所在类的this),并且是值传递方式(相当于编译器自动为我们按值传递了所有局部变量)。

//3&。函数体内可以使用Lambda所在作用范围内所有可见的局部变量(包括Lambda所在类的this),并且是引用传递方式(相当于编译器自动为我们按引用传递了所有局部变量)。

//4this。函数体内可以使用Lambda所在类中的成员变量。

//5a。将a按值进行传递。按值进行传递时,函数体内不能修改传递进来的a的拷贝,因为默认情况下函数是const的。要修改传递进来的a的拷贝,可以添加mutable修饰符。

//6&a。将a按引用进行传递。

//7a, &b。将a按值进行传递,b按引用进行传递。

//8 = &a,&b。除ab按引用进行传递外,其他参数都按值进行传递。

//9&, a, b。除ab按值进行传递外,其他参数都按引用进行传递。

//二、(操作符重载函数参数),标识重载的()操作符的参数,没有参数时,这部分可以省略。参数可以通过按值(如:(a, b))和按引用(如:(&a, &b))两种方式进行传递。

//三、mutableexception声明,这部分可以省略。按值传递函数对象参数时,加上mutable修饰符后,可以修改按值传递进来的拷贝(注意是能修改拷贝,而不是值本身)。

//exception声明用于指定函数抛出的异常,如抛出整数类型的异常,可以使用throw(int)

//四、->返回值类型,标识函数返回值的类型,当返回值为void,或者函数体中只有一处return的地方(此时编译器可以自动推断出返回值类型)时,这部分可以省略。

//五、{ 函数体 },标识函数的实现,这部分不能省略,但函数体可以为空。

案例1

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

 

//lambda表达式简单案例

void main()

{

//[函数对象参数](操作符重载函数参数)mutableexception声明、->返回值类型、{ 函数体 }

        auto fun1 = [](){cout << "hellochina"<<endl; };

    fun1();

 

    auto fun2 = [](int a, int b){return a + b; };

    cout << fun2(10, 9) << endl;

 

    std::cin.get();

}

运行结果:

bubuko.com,布布扣

案例2

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

 

void main()

{

    vector<int>  myv;

    myv.push_back(1);

    myv.push_back(2);

    myv.push_back(11);

    auto fun1 = [](int v){  cout << v << endl; };

    //通过这种方式操作myv中的值

    for_each(myv.begin(), myv.end(), fun1);

 

    cout << "----------------" << endl;

 

    //直接写在内部,下面的v表示传递进lambda表达式的参数

    for_each(myv.begin(), myv.end(),[](int v)

    {

        cout << v << endl;

    });

 

    std::cin.get();

}

运行结果:

bubuko.com,布布扣

案例3

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

 

void main()

{

    vector<int>  myv;

    myv.push_back(1);

    myv.push_back(2);

    myv.push_back(11);

 

    int a = 10;

    // =知道a的存在,可以引用,只能读,不可以写,引用当前块语句内部的局部变量

    auto fun1 = [=](int v){ v += a;  cout << v << endl;  };

 

    for_each(myv.begin(), myv.end(), fun1);

    //此时a没有被修改

    cout << a << endl;

    std::cin.get();

}

运行结果:

bubuko.com,布布扣

案例4

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

 

void main()

{

    vector<int>  myv;

    myv.push_back(1);

    myv.push_back(2);

    myv.push_back(11);

 

    int a = 10;

    //引用变量a,相当于直接操作a

    auto fun1 = [&a](int v){a = 3; v += a;  cout << v << endl;  };

 

    for_each(myv.begin(), myv.end(), fun1);

    //此时a发生变化

    cout << a << endl;

    std::cin.get();

}

运行结果:

bubuko.com,布布扣

案例5

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

 

void main()

{

    [](){cout << "hellochina"; };//是一个函数指针

    [](){cout << "hellochina";}();//如果没有定义名称,如果想调用lambda表达式,可以直接在lambda表达式的最后面加上()

 

    cin.get();

}

运行结果:

bubuko.com,布布扣

案例6

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

 

class test

{

public:

    vector<int>  myv;

    int num;

public:

    void add()

    {

        num = 12;

        myv.push_back(10);

        myv.push_back(11);

 

        //[]引用this

        int  x = 3;

        auto fun1 = [this,x](int v){ cout << v+x+this->num << endl; };

        //=按照副本引用this,还有当前块语句局部变量,不可以赋值,但是可以读取

        //&按照引用的方式操作局部变量,this,可以赋值,可以读取

        //副本引用a,[=]   [a]

        //引用a [&]  [&a]

 

        auto fun2 = [&](int v){ cout << v + x + this->num << endl; x = 3; };

        for_each(this->myv.begin(), this->myv.end(), fun1);

        cout << "-----------------" << endl;

        for_each(this->myv.begin(), this->myv.end(), fun2);

    }

};

 

void main()

{

    test t;

    t.add();

 

    cin.get();

}

运行结果:

bubuko.com,布布扣

:7

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

//返回值案例

void main()

{

    //double是返回值类型

    auto fun1 = []()->double{cout << "hello china" << endl; return 1; };

    fun1();

 

    //通过decltype(a/b)的方式获得类型

    auto fun2 = [](int a, double b)->decltype(a / b){cout << "hello china" << endl; return a / b; };

    fun2(1, 2.3);

 

    std::cin.get();

}

运行结果:

bubuko.com,布布扣

案例8

#include <functional>

#include <iostream>

#include <vector>

#include <algorithm>

 

using namespace std;

 

void main()

{

    int a = 10;

    //mutable使可以改副本了。如果下面的去掉将会报错

    auto fun1 = [a](int v)mutable->double{v += a;  cout << v << endl; a = 3; return 3; };

    cout << a << endl;

 

    std::cin.get();

    //运行结果还是10

}

lambda表达式

标签:style   blog   http   color   os   使用   io   ar   for   

原文地址:http://blog.csdn.net/tototuzuoquan/article/details/38964811

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!