본문 바로가기
놀기/C, C++

C++ 람다 식 공부 (4) - Examples

by Hi~ 2021. 7. 23.

2021.07.21 - [일하기/C++] - C++ 람다 식 공부 (1)

2021.07.22 - [일하기/C++] - C++ 람다 식 공부 (2)

2021.07.22 - [일하기/C++] - C++ 람다 식 공부 (3)

 

 


람다 식의 예

이 문서에서는 프로그램에 람다 식을 사용하는 방법을 보여 줍니다. 람다 식에 대 한 개요는 람다 식을 참조하세요. 람다 식의 구조에 대 한 자세한 내용은 람다 식 구문을 참조하세요.

● 위의 내용의 링크 참조

 


 

람다 식 선언

예제 1

람다 식이 형식화되어 있기 때문에 다음과 같이 auto 변수 또는 function object를 할당할 수 있습니다.


코드

// declaring_lambda_expressions1.cpp
// compile with: /EHsc /W4
#include <functional>
#include <iostream>

int main()
{
    using namespace std;

    // Assign the lambda expression that adds two numbers to an auto variable.
    auto f1 = [](int x, int y) { return x + y; };

    cout << f1(2, 3) << endl;

    // Assign the same lambda expression to a function object.
    function<int(int, int)> f2 = [](int x, int y) { return x + y; };

    cout << f2(3, 4) << endl;
}


출력

5
7

 

설명

자세한 내용은 auto , function 클래스 및 함수 호출을 참조하세요. 람다 식은 함수의 본문에서 대부분 선언되지만 변수를 초기화할 수 있는 어느 곳에서나 선언할 수 있습니다.

auto 참조
function Class 참조
Function Call 참조

 


 

예제 2

Microsoft c + + 컴파일러는 식이 호출될 때 대신 식이 선언될 때 람다 식을 캡처된 변수에 바인딩합니다. 다음 예제에서는 변수 지역 변수 i값과 참조로서 변수 j를 캡처하는 람다 식을 보여 줍니다. 람다 식은 i를 값으로 캡처하기 때문에 프로그램에서 i 이상을 다시 할당하면 식의 결과에 영향을 주지 않습니다. 그러나 람다 식을 j를 참조로 캡처하기 때문에 j를 다시 할당하면 식의 결과에 영향을 주지 않습니다.

코드

// declaring_lambda_expressions2.cpp
// compile with: /EHsc /W4
#include <functional>
#include <iostream>

int main()
{
   using namespace std;

   int i = 3;
   int j = 5;

   // The following lambda expression captures i by value and
   // j by reference.
   function<int (void)> f = [i, &j] { return i + j; };

   // Change the values of i and j.
   i = 22;
   j = 44;

   // Call f and print its result.
   cout << f() << endl;
}

 

출력

47
● 람다가 아니더라도 프로그래밍을 하면서 자주 나오는 예시이다. 굳이 설명 안 해도 이해될 듯싶다.

 


 

람다 식 호출

다음 코드 조각과 같이 람다 식을 즉시 호출할 수 있습니다. 두 번째 코드 조각은 람다를 find_if와 같은 c + + 표준 라이브러리 알고리즘에 인수로 전달하는 방법을 보여 줍니다.

 

예제 1

이 예제에서는 두 정수의 합을 반환하고 식 인수를 사용하여 인수 5 및 4로 식을 즉시 호출하는 람다 식을 선언합니다.

코드

// calling_lambda_expressions1.cpp
// compile with: /EHsc
#include <iostream>

int main()
{
   using namespace std;
   int n = [] (int x, int y) { return x + y; }(5, 4);
   cout << n << endl;
}

 

출력

9

 


 

예제 2

이 예제에서는 람다 식을 find_if 함수에 대한 인수로 전달합니다. 람다 식은 true 매개 변수가 짝수일 경우 반환합니다.

 

코드

// calling_lambda_expressions2.cpp
// compile with: /EHsc /W4
#include <list>
#include <algorithm>
#include <iostream>

int main()
{
    using namespace std;

    // Create a list of integers with a few initial elements.
    list<int> numbers;
    numbers.push_back(13);
    numbers.push_back(17);
    numbers.push_back(42);
    numbers.push_back(46);
    numbers.push_back(99);

    // Use the find_if function and a lambda expression to find the
    // first even number in the list.
    const list<int>::const_iterator result =
        find_if(numbers.begin(), numbers.end(), [](int n) { return (n % 2) == 0; });

    // Print the result.
    if (result != numbers.end()) {
        cout << "The first even number in the list is " << *result << "." << endl;
    } else {
        cout << "The list contains no even numbers." << endl;
    }
}

 

출력

The first even number in the list is 42.

 

설명

함수에 대 한 자세한 내용은 find_if를 참조하십시오. 일반적인 알고리즘을 수행하는 c + + 표준 라이브러리 함수에 대한 자세한 내용은 <algorithm>을 참조하십시오.

find_if 참조
<algorithm> 참조 

 


 

람다 식 중첩

 

예제

이 예제와 같이 람다 식을 다른 람다 식 안에 중첩할 수 있습니다. 안쪽 람다 식은 인수를 2를 곱한 후 결과를 반환합니다. 바깥쪽 람다 식은 안쪽 람다 식의 인수와 함께 호출하고 결과에 3을 더합니다.

 

코드

// nesting_lambda_expressions.cpp
// compile with: /EHsc /W4
#include <iostream>

int main()
{
    using namespace std;

    // The following lambda expression contains a nested lambda
    // expression.
    int timestwoplusthree = [](int x) { return [](int y) { return y * 2; }(x) + 3; }(5);

    // Print the result.
    cout << timestwoplusthree << endl;
}

 

출력

13

 

설명

이 예제에서 [](int y) { return y * 2; }는 중첩된 람다 식입니다.

'놀기 > C, C++' 카테고리의 다른 글

C++ 람다 식 공부 (6) - Examples  (0) 2021.07.23
C++ 람다 식 공부 (5) - Examples  (0) 2021.07.23
C++ 람다 식 공부 (3)  (0) 2021.07.22
C++ 람다 식 공부 (2)  (0) 2021.07.22
C++ 람다 식 공부 (1)  (0) 2021.07.21

댓글