[c++] lambda递归

/ 4,505评论 / 13070阅读 / 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. A.D. Sullivan, the city Lawyer met with the Commissioner of the Supreme Courtroom at Sullivan’s office.

  2. Ernest Illingworth Musgrave, Director, Leeds City Artwork Gallery and Temple Newsam House, Leeds.

  3. Welsh, Daniel (2 February 2016).

  4. Good post. I learn something new and challenging on websites I stumbleupon every day. It’s always interesting to read through content from other authors and practice something from other web sites.

  5. Forge Integrated Major Faculty singing from the live performance outside BBC Blackstaff Home in Belfast – BBC Northern Ireland the link up on the evening by no means went to their performance.

  6. This is because your migration or SDP aspect will go down at the same time.

  7. Lieutenant-Colonel Joseph Marie Emile Gareze, ED, JP, Gibraltar Regiment.

  8. Тут можно преобрести несгораемый сейф сейф огнеупорный

  9. Тут можно преобрести сейф оружейный купить купить оружейный сейф

  10. Тут можно преобрести сейф под оружие сейф под ружье цена

  11. In some circumstances, widespread points of Christmas, akin to Christmas timber, lights, and decorating are nonetheless prominently showcased, but are associated with unspecified “holidays” reasonably than with Christmas.

  12. More than 3,000 of those boards are working all through the Nation.

  13. Arthur Rogers, Member of Rescue Part, Civil Defence Corps, Cheshire.

  14. Raw garden carts说道:

    You’ve made some decent points there. I looked on the web for more info about the issue and found most individuals will go along with your views on this website.

  15. Golli gummies说道:

    I couldn’t resist commenting. Very well written.

  16. CurtisTraup说道:

    erepharm.com ED meds online with insurance buy ed pills

  17. DennisBob说道:

    buy lasix fur pharm: furosemide – fur pharm

  18. DennisBob说道:

    buy gabapentin: cheapest Gabapentin GabaPharm – buy gabapentin online

  19. Тут можно преобрести сейф огнестойкий в москве сейф несгораемый

  20. There is certainly a great deal to know about this subject. I like all the points you made.

  21. CurtisTraup说道:

    Kam Pharm kamagra kampharm.shop

  22. Lloydlania说道:

    http://rybpharm.com/# rybpharm rybelsus

  23. сейфы说道:

    Здесь можно преобрести сейф москва купить сейф

  24. сейф说道:

    Здесь можно преобрести сейф цена сейф купить москва

  25. This post is highly enlightening. I truly appreciated reading it. The information is highly well-organized and straightforward to follow.

  26. Robertmep说道:

    https://rybpharm.com/# rybpharm rybelsus

  27. Excellent blog you have here.. It’s hard to find high quality writing like yours nowadays. I really appreciate people like you! Take care!!

  28. At the September 28 assembly, issues continued to be heated between Turner and Martini.

  29. Due to the worry of spreading the virus, some distributors stopped returning to farmers markets.

  30. Horace William Daughtrey. For providers to the Group in Slinfold, West Sussex.

  31. Care of mothers-to-be a lot buy for bedding, as she pushed cannot get excited blue.

  32. Turquoise and moldavite are two examples.

  33. But with an ‘if’ it can save you the world because my head wasn’t about staying in Manchester.

  34. Despite violating NCAA rules, many believe that Stalions was simply doing his best to help the workforce in whatever means attainable.

  35. But any bedroom rises to new ranges of comfort given the right amenities.

  36. Normal refuse is collected weekly utilizing user-pays official council baggage.

  37. Or even any anyone you’ll be able to refer us to?

  38. Batman turns into his assumed alter ego and various workers and prisoners of Arkham change into characters from the Batman story.

  39. 土佐の 亡霊说道:

    The agriculture organizations listed below have issued statements following this announcement.

  40. The federal government mentioned the majority of family farms would nonetheless be capable to be inherited tax-free, with only the country’s 500 richest estates likely to pay more.

  41. Paul Reed, Director, Data Department, British Council.

  42. Rev. 12:9b The Satan, and Satan, which deceiveth the entire world.

  43. Since your house is already dressed for the holidays, additional decorations should not required.

  44. 22 July – Deputy Chief Medical Officer Ronan Glynn stated that the number of COVID-19 cases associated to overseas travel had elevated “very sharply”, after it was revealed that the Delta variant now accounted for 90 of instances in Ireland.

  45. Jcpenney maternity marriage ceremony dresses.

  46. Thomas Talley maintain that the Christian feast of Christmas was already being celebrated and that Aurelian established Dies Natalis Solis Invicti as a way to compete with the Christian feast of Christmas.

发表回复

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