[c++] lambda递归

/ 3,085评论 / 10514阅读 / 0点赞

lambda表达式

int main() {
    // 声明
    auto fun = []() {
        cout << 123 << endl;
    };
    // 调用
    fun();
    return 0;
}

递归

int hello(int value) {
    if(value < 0) {
        return 0;
    }
    cout << value << endl;
    hello(value - 1);
}

lambda递归

int main() {
    auto fun = [&fun](int value) {
        if(value < 0) { 
             return;
        }
        cout << value << endl;
        // 这里是不行的!!!
        fun(value - 1);
    };
    fun(10);
    return 0;
}

#include <iostream>
#include <functional>
using namespace std;

int main() {
    int i = 10;
    std::function<void()> myfun;
    myfun = [&myfun, &i]() {
        if (i < 0) {
            return;
        }
        cout << i << endl;
        --i;
        myfun();
    };
    myfun();
    return 0;
}
  1. GregorySnino说道:

    buy prescription drugs from canada http://indianpharmdelivery.com/# india pharmacy

  2. Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
    Мы предлагаем: сервисные центры в барнауле
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  3. Brandonnar说道:

    indian pharmacy paypal buy prescription drugs from india online shopping pharmacy india

  4. GregorySnino说道:

    men ed https://mexicanpharm24.pro/# mexican rx online

  5. Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
    Мы предлагаем: сервисные центры в челябинске
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  6. Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
    Мы предлагаем: ремонт бытовой техники в барнауле
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  7. AgustinFar说道:

    http://mexicanpharm24.pro/# buying prescription drugs in mexico
    top 10 online pharmacy in india

  8. Brandonnar说道:

    cheapest online pharmacy india indian pharmacy cheapest online pharmacy india

  9. Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
    Мы предлагаем: сервисные центры в челябинске
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  10. Профессиональный сервисный центр по ремонту сотовых телефонов в Москве.
    Мы предлагаем: ноутбук ремонт
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  11. GregorySnino说道:

    buy prescription drugs http://drugs24.pro/# cat antibiotics without pet prescription

  12. Truly liked reading this entry. It’s very well-written and full of valuable information. Thanks for sharing this.

  13. Brandonnar说道:

    buy prescription drugs from india п»їlegitimate online pharmacies india п»їlegitimate online pharmacies india

  14. Профессиональный сервисный центр ремонт кнопочных телефонов ремонт телефонов ближайший ко мне

  15. Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
    Мы предлагаем: ремонт крупногабаритной техники в барнауле
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  16. AgustinFar说道:

    https://mexicanpharm24.pro/# purple pharmacy mexico price list
    mail order pharmacy india

  17. I was so impressed with all the many decorations you place time and effort into.

  18. Additionally they were asked to register individuals into the Venezuelan government homeland card, to safe medical companies, and refuse treatment to those who didn’t apply for it.

  19. In 1800 the Northwest Territory was cut in two and Wisconsin grew to become part of the western division, referred to as Indiana Territory.

  20. It did not take long for Jon Eiden to make history in the 2019 “Lake Winnebago System” sturgeon spearing season.

  21. 市販薬 依存说道:

    But less complicated delights can be discovered at places like Hemisfair, an urban park on the location of the 1968 World’s Truthful that features an inclusive playground, splash pad, games plaza, and other areas designed for play and gathering.

  22. She is survived by three daughters, Marilyn Vose of California, Pamela Walker of Nottingham and Cynthia Busch of Winterport; two sons, L. Philip Cotton Jr.

  23. And there’s quite a bit – lots of cultural work to do in Italy in case you really want to enhance the scenario which, in these summer time days, seems it’s getting worse as a result of the many episodes of racism skilled by black Italians and Africans living in Italy.

  24. tubidy说道:

    Way cool! Some extremely valid points! I appreciate you penning this post and the rest of the site is also very good.

  25. poşet imalatı说道:

    Hi! I just would like to give you a big thumbs up for your great info you have got right here on this post. I am coming back to your web site for more soon.

  26. The second-largest referendum asked for $900,000 for site enhancements at Holmen Highschool.

  27. Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
    Мы предлагаем: сервис центры бытовой техники челябинск
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  28. Brandonnar说道:

    best ed pill treatment with drugs canadian online pharmacy

  29. toptan poşet说道:

    Hello there! This post couldn’t be written any better! Looking at this article reminds me of my previous roommate! He constantly kept preaching about this. I am going to forward this article to him. Fairly certain he’s going to have a very good read. I appreciate you for sharing!

  30. AgustinFar说道:

    https://drugs24.pro/# medication for ed
    buy prescription drugs from india

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注