[c++] lambda递归

/ 4,480评论 / 13001阅读 / 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. Узнай все о варикоцеле симптомы варикоцеле

  2. Bradleyarrip说道:

    priligy maxpharm priligy maxpharm cheap priligy

  3. Loved this entry. It’s extremely comprehensive and packed with helpful details. Excellent effort!

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

  5. Derekjup说道:

    over the counter prednisone pills: buy prednisone – prednisone 5 mg brand name

  6. Good blog you have here.. It’s hard to find excellent writing like yours nowadays. I truly appreciate individuals like you! Take care!!

  7. Hi, I do think your website could possibly be having internet browser compatibility issues. When I look at your web site in Safari, it looks fine however when opening in IE, it has some overlapping issues. I just wanted to provide you with a quick heads up! Other than that, excellent website!

  8. Brandenven说道:

    dapoxetine price: buy priligy max pharm – priligy max pharm

  9. Узнай все о варикоцеле яичка у мужчины заболевание варикоцеле

  10. Тут можно преобрести сейф для охотничьего ружья купить оружейные шкафы москва

  11. Derekjup说道:

    dapoxetine price: dapoxetine price – buy dapoxetine online

  12. Тут можно преобрести интернет магазин сейфов для оружия где купить сейф для ружья

  13. Узнай все о варикоцеле причины возникновения признаки варикоцеле

  14. Bradleyarrip说道:

    amoxicillin 500 Amoxicillin buy online amoxicillin 500mg cost

  15. accepes说道:

    The ligand binding assay results were used as the reference standard for calculating measures of test performance, and additional calculations were performed, comparing ligand binding and the immunohistochemical assays, with 5 year disease free survival as the reference standard buy priligy 30mg The only reason we fear gyno is because we don t understand it

  16. StevenWearo说道:

    cost cheap clomid: buying clomid tablets – can you get clomid online

  17. Brandenven说道:

    prednisone 50: buy prednisone – cost of prednisone tablets

  18. DanielArill说道:

    generic amoxicillin https://amoxilcompharm.com/# amoxicillin 500 mg cost

  19. After I originally left a comment I seem to have clicked the -Notify me when new comments are added- checkbox and from now on every time a comment is added I receive 4 emails with the same comment. Perhaps there is a way you are able to remove me from that service? Appreciate it.

  20. I want to to thank you for this very good read!! I absolutely enjoyed every little bit of it. I have got you bookmarked to look at new things you post…

  21. Geoffrey Clifford Johnson, lately Senior Architect, Building Division, Ministry of Works and Transport, Western Region, Nigeria.

  22. Bradleyarrip说道:

    cost generic clomid without a prescription clomid rex pharm cheap clomid without prescription

  23. It was his work in the 1920s and 30s that put the subject on a solid scientific foundation.

  24. The very fact he was nowhere to be seen at Tyrone’s wedding ceremony simply shows how the rift has never healed’.

  25. ちゅうむ说道:

    This enables the wearer’s romantic life to blossom with blooms of love.

  26. DanielArill说道:

    buy amoxicillin 500mg usa http://priligymaxpharm.com/# Priligy tablets

  27. Florence Jane Brown, JP, Member, Abertillery City District Council.

  28. Rear Admiral Anthony Templer Frederick Griffith Griffin.

  29. The Common Studios Florida model of the ride hosted its one millionth rider on July 14, 2008, reaching the milestone quicker than every other attraction within the resort.

  30. The 2 old associates discuss all the things however football; their kids and their research, their parents, well being problems.

  31. I doubt this can last as a coverage.

  32. Far better to deal with defects at this level than to waste cash and energy making an attempt to disguise them later.

  33. 女 性の悩み说道:

    Peter John Twin, Professor of Physics, College of Liverpool.

  34. Alderman Arthur Ashton, JP.

  35. 1928 noticed branches formed in Ashford; Leeds and West Riding; North Wales; Rugby and Hampshire.

  36. In an interview on GB News, he warned that European protests may spread to the UK.

  37. The Short-Time period Rentals/Transient Occupancy Tax Map Viewer presents the Quick-Time period Rentals (STRs) and Transient Occupancy Tax locations (TOTs) in town of Oceanside.

  38. The Widespread Agricultural Coverage (CAP) nonetheless represents about one third of the EU funds and has historically helped ensure the support of the agriculture sector for the European mission.

  39. Brandenven说道:

    where to buy cheap clomid prices: clomid online – where can i buy generic clomid without insurance

  40. Tremendous Cream added moisture was used to assist easy hair texture, and the Ultra Defining Gel was used for definition and hold.

  41. Bradleyarrip说道:

    how to get cheap clomid for sale rex pharm where to buy clomid tablets

  42. He and his sister were public figures as small kids because of the circumstances of their mother’s extensively publicized death by suicide.

  43. I like the brown bag (or paper bag) approach because it covers a multitude of sins (& wall grooves).

  44. StevenWearo说道:

    amoxicillin online canada: Amoxicillin Com Pharm – amoxicillin order online

  45. Derekjup说道:

    where can i get generic clomid no prescription: cheap clomid – clomid without insurance

  46. Brandenven说道:

    buy generic clomid without dr prescription: generic clomid – how to get cheap clomid pills

  47. A brand new underwater nation is offered as well as a bunch of recent underwater pretenders to select from.

发表回复

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