C++ lambda expression with parameters

#pragma once 
#pragma comment(lib,"rpcrt4.lib")

#include <Windows.h>
#include <rpcdce.h>
#include <float.h>
#include <iostream>
#include <limits>
#include <math.h>
#include <numeric>
#include <random>
#include <stack>
#include <string>
#include <thread>
#include <stdio.h>
#include <vector>

using namespace std;

string getUuid()
{
    RPC_CSTR rpcStr;
    string uuidValue;
    UUID newUUID;
    UuidCreate(&newUUID);
    UuidToStringA(&newUUID, &rpcStr);
    uuidValue = (char*)rpcStr;
    RpcStringFreeA(&rpcStr);
    return uuidValue;
}


auto leCL = [](int x, int y, int z)
{
    for (int i = 0; i < x; i++)
    {
        cout << i << "," << getUuid() << endl;
    }

    for (int i = 0; i < y; i++)
    {
        cout << getUuid() << "," << i << endl;
    }

    for (int i = 0; i < z; i++)
    {
        cout << i << "," << getUuid() << "," << getUuid() << endl;
    }
};

int main()
{
    try
    {
       leCL(10, 15, 20);
    }
    catch (const std::exception& ex)
    {
        cout << ex.what() << endl;
    }
}

 

 

C++ lambda expression with parameters

 

void foreachDemo(int x)
{    
    vector<string> vec;
    for (int i = 0; i < x; i++)
    {
        vec.push_back(getUuid());
    }

    for_each(vec.begin(), vec.end(), [](const auto& s) 
        {
            static uint16_t num = 0;
            cout << ++num << "," << s << endl;
        });
}


int main()
{
    try
    {
        foreachDemo(100);
    }
    catch (const std::exception& ex)
    {
        cout << ex.what() << endl;
    }
}

C++ lambda expression with parameters

 

原文链接: https://www.cnblogs.com/Fred1987/p/16789423.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    C++ lambda expression with parameters

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/401305

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年4月19日 上午9:12
下一篇 2023年4月19日 上午9:12

相关推荐