다음을 통해 공유


람다 식

업데이트: 2007년 11월

람다 식은 단일 값을 계산하고 반환하는 이름이 없는 함수입니다. 람다 식은 대리자 형식이 유효한 모든 곳에서 사용할 수 있습니다.

참고:

RemoveHandler 문은 예외입니다. RemoveHandler의 대리자 매개 변수에는 람다 식을 전달할 수 없습니다.

다음 예제에서는 인수를 점증적으로 늘리고 값을 반환하는 람다 식입니다.

Function (num As Integer) num + 1

일반적으로 람다 식은 식으므로 문의 일부로만 사용할 수 있습니다.

예를 들어 식을 여러 번 사용하려는 경우에는 변수 이름에 함수를 할당할 수 있습니다.

Dim add1 = Function(num As Integer) num + 1

함수를 호출하기 위해 매개 변수에 대한 값을 보냅니다.

' The following line prints 6.
Console.WriteLine(add1(5))

또는 함수를 동시에 선언하고 실행할 수 있습니다.

Console.WriteLine((Function(num As Integer) num + 1)(5))

람다 식은 이 항목의 뒷부분에 있는 컨텍스트 단원의 예제에 나와 있는 것처럼 함수 호출의 값으로 반환될 수도 있고, 대리자 매개 변수에 인수로 전달될 수도 있습니다. 다음 예제에서는 부울 람다 식이 testResult 메서드에 인수로 전달됩니다. 이 메서드는 정수 인수 value에 부울 테스트를 적용하고 value에 적용할 때 람다 식이 True를 반환할 경우에는 "Success"를, 람다 식이 False를 반환할 경우에는 "Failure"를 표시합니다.

Module Module2

    Sub Main()
        ' The following line will print Success, because 4 is even.
        testResult(4, Function(num) num Mod 2 = 0)
        ' The following line will print Failure, because 5 is not > 10.
        testResult(5, Function(num) num > 10)
    End Sub

    ' Sub testResult takes two arguments, an integer value and a 
    ' Boolean function. 
    ' If the function returns True for the integer argument, Success
    ' is displayed.
    ' If the function returns False for the integer argument, Failure
    ' is displayed.
    Sub testResult(ByVal value As Integer, ByVal fun As Func(Of Integer, Boolean))
        If fun(value) Then
            Console.WriteLine("Success")
        Else
            Console.WriteLine("Failure")
        End If
    End Sub

End Module

쿼리에서의 람다 식

LINQ(통합 언어 쿼리)에서 람다 식은 여러 표준 쿼리 연산자의 기반이 됩니다. 컴파일러는 람다 식을 만들어서 Where, Select, Order By, Take While 등의 기본 쿼리 메서드에 정의된 계산을 캡처합니다.

예를 들어 다음 쿼리를 확인해 보십시오.

Dim londonCusts = From cust In db.Customers 
                  Where cust.City = "London" 
                  Select cust

이 예제는 다음 코드에 컴파일되었습니다.

Dim londonCusts = db.Customers _
    .Where(Function(cust) cust.City = "London") _
    .Select(Function(cust) cust)

쿼리 메서드에 대한 자세한 내용은 쿼리(Visual Basic)를 참조하십시오.

람다 식 구문

람다 식의 구문은 표준 함수의 구문과 유사합니다. 차이점은 다음과 같습니다.

  • 람다 식에는 이름이 없습니다.

  • 람다 식에는 Overloads 또는 Overrides와 같은 한정자가 있을 수 없습니다.

  • 람다 식은 As 절을 사용하여 함수의 반환 형식을 지정하지 않습니다. 대신 람다 식의 본문이 평가되는 값에서 형식이 유추됩니다. 예를 들어 람다 식의 본문이 Where cust.City = "London"이면 반환 형식은 Boolean입니다.

  • 함수의 본문은 문이 아니라 식이어야 합니다. 본문은 하위 프로시저에 대한 호출이 아니라 함수 프로시저에 대한 호출로 구성되어야 합니다.

  • Return 문이 없습니다. 함수가 반환하는 값은 함수 본문에 있는 식의 값입니다.

  • End Function 문이 없습니다.

  • 모든 매개 변수에 지정된 데이터 형식이 있거나 모든 매개 변수가 유추되어야 합니다.

  • Optional 및 Paramarray 매개 변수가 허용되지 않습니다.

  • 제네릭 매개 변수가 허용되지 않습니다.

이러한 제한 그리고 람다 식의 사용 방식으로 인해 주로 짧고 간단합니다.

Context

람다 식과 해당 람다 식을 정의한 메서드는 컨텍스트를 공유합니다. 포함하는 메서드에서 작성된 모든 코드에 대해 동일한 액세스 권한을 가지고 있습니다. 여기에는 멤버 변수, 함수 및 sub, Me 그리고 포함하는 메서드에 있는 매개 변수 및 지역 변수에 대한 액세스가 포함됩니다.

포함하는 메서드에 있는 지역 변수 및 매개 변수에 대한 액세스는 해당 메서드의 수명 이후에도 유지될 수 있습니다. 람다 식에서 유추하는 대리자를 가비지 수집에 사용할 수 없는 한 원래 환경의 변수에 계속 액세스할 수 있습니다. 다음 예제에서 변수 target은 람다 식 playTheGame을 정의하는 메서드 makeTheGame의 지역 변수입니다. Main에서 takeAGuess에 할당되는 반환된 람다 식은 지역 변수 target에 여전히 액세스할 수 있습니다.

Module Module1

    Sub Main()
        ' Variable takeAGuess is a Boolean function. It stores the target
        ' number that is set in makeTheGame.
        Dim takeAGuess As gameDelegate = makeTheGame()

        ' Set up the loop to play the game.
        Dim guess As Integer
        Dim gameOver = False
        While Not gameOver
            guess = CInt(InputBox("Enter a number between 1 and 10 (0 to quit)", "Guessing Game", "0"))
            ' A guess of 0 means you want to give up.
            If guess = 0 Then
                gameOver = True
            Else
                ' Tests your guess and announces whether you are correct. Method takeAGuess
                ' is called multiple times with different guesses. The target value is not 
                ' accessible from Main and is not passed in.
                gameOver = takeAGuess(guess)
                Console.WriteLine("Guess of " & guess & " is " & gameOver)
            End If
        End While

    End Sub

    Delegate Function gameDelegate(ByVal aGuess As Integer) As Boolean

    Public Function makeTheGame() As gameDelegate

        ' Generate the target number, between 1 and 10. Notice that 
        ' target is a local variable. After you return from makeTheGame,
        ' it is not directly accessible.
        Randomize()
        Dim target As Integer = CInt(Int(10 * Rnd() + 1))

        ' Print the answer if you want to be sure the game is not cheating
        ' by changing the target at each guess.
        Console.WriteLine("(Peeking at the answer) The target is " & target)

        ' The game is returned as a lambda expression. The lambda expression
        ' carries with it the environment in which it was created. This 
        ' environment includes the target number. Note that only the current
        ' guess is a parameter to the returned lambda expression, not the target. 

        ' Does the guess equal the target?
        Dim playTheGame = Function(guess As Integer) guess = target

        Return playTheGame

    End Function

End Module

다음 예제에서는 중첩된 람다 식의 광범위한 액세스 권한을 보여 줍니다. 반환된 람다 식이 Main에서 aDel로 실행될 때는 다음 요소에 액세스합니다.

  • 반환된 람다 식을 정의한 클래스의 필드: aField

  • 반환된 람다 식을 정의한 클래스의 속성: aProp

  • 반환된 람다 식을 정의한 functionWithNestedLambda 메서드의 매개 변수: level1

  • functionWithNestedLambda의 지역 변수: localVar

  • 반환된 람다 식이 중첩된 람다 식의 매개 변수: level2

Module Module3

    Sub Main()
        ' Create an instance of the class, with 1 as the value of 
        ' the property.
        Dim lambdaScopeDemoInstance = New LambdaScopeDemoClass _
            With {.Prop = 1}

        ' Variable aDel will be bound to the nested lambda expression  
        ' returned by the call to functionWithNestedLambda.
        ' The value 2 is sent in for parameter level1.
        Dim aDel As aDelegate = _
            lambdaScopeDemoInstance.functionWithNestedLambda(2)

        ' Now the returned lambda expression is called, with 4 as the 
        ' value of parameter level3.
        Console.WriteLine("First value returned by aDel:   " & aDel(4))

        ' Change a few values to verify that the lambda expression has 
        ' access to the variables, not just their original values.
        lambdaScopeDemoInstance.aField = 20
        lambdaScopeDemoInstance.Prop = 30
        Console.WriteLine("Second value returned by aDel: " & aDel(40))
    End Sub

    Delegate Function aDelegate(ByVal delParameter As Integer) _
        As Integer

    Public Class LambdaScopeDemoClass
        Public aField As Integer = 6
        Dim aProp As Integer

        Property Prop() As Integer
            Get
                Return aProp
            End Get
            Set(ByVal value As Integer)
                aProp = value
            End Set
        End Property

        Public Function functionWithNestedLambda _
           (ByVal level1 As Integer) As aDelegate
            Dim localVar As Integer = 5

            ' When the nested lambda expression is executed the first 
            ' time, as aDel from Main, the variables have these values:
            ' level1 = 2
            ' level2 = 3, after aLambda is called in the Return statement
            ' level3 = 4, after aDel is called in Main
            ' locarVar = 5
            ' aField = 6
            ' aProp = 1
            ' The second time it is executed, two values have changed:
            ' aField = 20
            ' aProp = 30
            ' level3 = 40
            Dim aLambda = Function(level2 As Integer) _
                              Function(level3 As Integer) _
                                  level1 + level2 + level3 + localVar _
                                  + aField + aProp

            ' The function returns the nested lambda, with 3 as the 
            ' value of parameter level2.
            Return aLambda(3)
        End Function

    End Class
End Module

대리자 형식으로 변환

람다 식은 호환되는 대리자 형식으로 암시적으로 변환될 수 있습니다. 호환성을 위한 일반적인 요구 사항에 대한 자세한 내용은 완화된 대리자 변환을 참조하십시오.

또한 람다 식을 대리자에 할당할 때 매개 변수 이름만 지정하고 해당 데이터 형식은 생략하여 대리자에서 형식을 가져오도록 할 수 있습니다. 다음 예제에서는 람다 식이 ExampleDel 형식의 del라는 변수에 할당됩니다. 이 변수는 정수와 문자열의 두 매개 변수를 가져오는 대리자입니다. 람다 식에 있는 매개 변수의 데이터 형식은 지정되지 않았습니다. 그러나 del은 ExampleDel의 정의에 지정된 대로 정수 인수와 문자열 인수를 필요로 합니다.

' Definition of function delegate ExampleDel.
Delegate Function ExampleDel(ByVal arg1 As Integer, _
                             ByVal arg2 As String) As Integer
' Declaration of del as an instance of ExampleDel, with no data 
' type specified for the parameters, m and s.
Dim del As ExampleDel = Function(m, s) m

' Valid call to del, sending in an integer and a string.
Console.WriteLine(del(7, "up"))

' Neither of these calls is valid. Function del requires an integer
' argument and a string argument.
' Not valid.
' Console.WriteLine(del(7, 3))
' Console.WriteLine(del("abc"))

예제

  • 다음 예제에서는 nullable 인수에 할당된 값이 있으면 True를 반환하고 해당 값이 Nothing이면 False를 반환하는 람다 식을 정의합니다.

    Dim notNothing = Function(num? As Integer) _
                 num IsNot Nothing
    Dim arg As Integer = 14
    Console.WriteLine("Does the argument have an assigned value?")
    Console.WriteLine(notNothing(arg))
    
  • 다음 예제에서는 배열에 있는 마지막 요소의 인덱스를 반환하는 람다 식을 정의합니다.

    Dim numbers() As Integer = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    Dim lastIndex = Function(intArray() As Integer) _
                        intArray.Length - 1
    For i = 0 To lastIndex(numbers)
        numbers(i) = numbers(i) + 1
    Next
    

참고 항목

작업

방법: Visual Basic에서 프로시저에 다른 프로시저 전달

방법: 람다 식 만들기

개념

Visual Basic의 프로시저

Visual Basic의 LINQ 소개

대리자 및 AddressOf 연산자

Nullable 값 형식

완화된 대리자 변환

참조

Function 문(Visual Basic)