[c++] lambda递归

/ 3,088评论 / 10537阅读 / 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. Tomasdrads说道:

    farmacie online autorizzate elenco: Farmacie on line spedizione gratuita – top farmacia online

  2. I really like looking through an article that will make people think. Also, thanks for allowing me to comment.

  3. After going over a number of the blog articles on your blog, I seriously appreciate your way of blogging. I saved as a favorite it to my bookmark webpage list and will be checking back in the near future. Please visit my web site too and tell me how you feel.

  4. I discovered your blog internet site on google and check a few of your early posts. Continue to keep up the extremely good operate. I just extra up your RSS feed to my MSN News Reader. Looking for forward to reading much more from you later on!…

  5. Pretty! This has been a really wonderful article. Many thanks for providing this info.

  6. TMail说道:

    Your positivity and optimism are contagious It’s evident that you genuinely care about your readers and their well-being

  7. I really appreciate this post. I¡¦ve been looking everywhere for this! Thank goodness I found it on Bing. You’ve made my day! Thanks again

  8. Matthewnouts说道:

    zithromax over the counter uk: zithromax capsules – generic zithromax medicine

  9. Matthewnouts说道:

    cost of propecia price: buying cheap propecia prices – order generic propecia without insurance

  10. Matthewnouts说道:

    п»їcytotec pills online: buy cytotec over the counter – buy cytotec

  11. Matthewnouts说道:

    tamoxifen alternatives premenopausal: tamoxifen lawsuit – who should take tamoxifen

  12. Baccarat说道:

    Thank you for the auspicious writeup It in fact was a amusement account it Look advanced to far added agreeable from you However how can we communicate

  13. Matthewnouts说道:

    where can you buy zithromax: buy zithromax no prescription – generic zithromax 500mg

  14. I’m more than happy to uncover this page. I want to to thank you for ones time for this particularly fantastic read!! I definitely really liked every bit of it and I have you bookmarked to see new stuff in your website.

  15. Matthewnouts说道:

    nolvadex estrogen blocker: tamoxifen rash pictures – common side effects of tamoxifen

  16. Aw, this was an extremely nice post. Taking a few minutes and actual effort to create a top notch article… but what can I say… I put things off a lot and never seem to get anything done.

  17. LewisToite说道:

    http://nolvadexbestprice.pro/# tamoxifen side effects forum

  18. You’re so cool! I don’t think I’ve read through anything like this before. So wonderful to find someone with some original thoughts on this subject. Seriously.. thanks for starting this up. This web site is something that is needed on the web, someone with some originality.

  19. LewisToite说道:

    http://prednisonebestprice.pro/# prednisone uk price

  20. Matthewnouts说道:

    buy zithromax without presc: zithromax drug – zithromax 500 without prescription

  21. Matthewnouts说道:

    order generic propecia without dr prescription: buy propecia pills – order cheap propecia

  22. Matthewnouts说道:

    buy cheap prednisone: generic prednisone online – prednisone 30 mg

  23. Matthewnouts说道:

    buy cytotec: buy misoprostol over the counter – buy cytotec in usa

  24. LewisToite说道:

    https://nolvadexbestprice.pro/# benefits of tamoxifen

  25. Matthewnouts说道:

    cytotec buy online usa: cytotec buy online usa – Misoprostol 200 mg buy online

  26. Matthewnouts说道:

    tamoxifen generic: tamoxifen men – tamoxifen rash

  27. KevinBlupt说道:

    prednisone 5 mg tablet price: prednisone cream rx – prednisone 10mg tablet price

  28. I’m impressed, I have to admit. Rarely do I encounter a blog that’s equally educative and interesting, and without a doubt, you have hit the nail on the head. The problem is something that too few folks are speaking intelligently about. Now i’m very happy that I stumbled across this during my search for something concerning this.

  29. KevinBlupt说道:

    does tamoxifen make you tired: tamoxifen lawsuit – tamoxifen dosage

  30. Matthewnouts说道:

    cytotec pills buy online: п»їcytotec pills online – Abortion pills online

  31. Matthewnouts说道:

    nolvadex pct: tamoxifen 20 mg – tamoxifen benefits

  32. Robertperma说道:

    prednisone 40mg prednisone 60 mg price prednisone 2.5 mg daily

  33. Robertperma说道:

    tamoxifen for gynecomastia reviews what is tamoxifen used for nolvadex gynecomastia

  34. LewisToite说道:

    http://cytotecbestprice.pro/# buy cytotec over the counter

  35. Use the Internet. Do whatever it takes to get the names, and then contact them.

  36. LewisToite说道:

    https://cytotecbestprice.pro/# buy misoprostol over the counter

  37. PatrickHindy说道:

    https://cytotecbestprice.pro/# Cytotec 200mcg price

  38. Matthewnouts说道:

    tamoxifen for gynecomastia reviews: how does tamoxifen work – who should take tamoxifen

  39. Robertperma说道:

    buy zithromax without prescription online zithromax capsules price zithromax 500mg price in india

  40. Matthewnouts说道:

    tamoxifen warning: femara vs tamoxifen – tamoxifen dosage

  41. Robertperma说道:

    nolvadex gynecomastia nolvadex d nolvadex pills

  42. PatrickHindy说道:

    https://cytotecbestprice.pro/# buy misoprostol over the counter

  43. Matthewnouts说道:

    Cytotec 200mcg price: buy cytotec over the counter – buy cytotec over the counter

  44. Robertperma说道:

    can you buy prednisone in canada prednisone 5 mg tablet cost can i buy prednisone online without prescription

  45. PatrickHindy说道:

    https://prednisonebestprice.pro/# prednisone 40 mg price

  46. Matthewnouts说道:

    where can i purchase zithromax online: zithromax online usa – where can i buy zithromax capsules

发表回复

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