Recherche…


Introduction

Fonctionne en tant que membre de première classe signifie qu'il peut bénéficier de privilèges comme les objets. Il peut être affecté à une variable, transmis à une fonction en tant que paramètre ou peut être utilisé comme type de retour.

Affectation d'une fonction à une variable

struct Mathematics
{
    internal func performOperation(inputArray: [Int], operation: (Int)-> Int)-> [Int]
    {
        var processedArray = [Int]()
        
        for item in inputArray
        {
            processedArray.append(operation(item))
        }
        
        return processedArray
    }
    
    
    internal func performComplexOperation(valueOne: Int)-> ((Int)-> Int)
    {
        return
            ({
                 return valueOne + $0   
            })
    }
    
}


let arrayToBeProcessed = [1,3,5,7,9,11,8,6,4,2,100]

let math = Mathematics()

func add2(item: Int)-> Int
{
    return (item + 2)
}

// assigning the function to a variable and then passing it to a function as param
let add2ToMe = add2
print(math.performOperation(inputArray: arrayToBeProcessed, operation: add2ToMe))

Sortie:

[3, 5, 7, 9, 11, 13, 10, 8, 6, 4, 102]

De même, ce qui précède pourrait être réalisé en utilisant une closure

// assigning the closure to a variable and then passing it to a function as param
let add2 = {(item: Int)-> Int in return item + 2}
print(math.performOperation(inputArray: arrayToBeProcessed, operation: add2))

Passer la fonction comme argument à une autre fonction, créant ainsi une fonction d'ordre supérieur

func multiply2(item: Int)-> Int
{
    return (item + 2)
}


let multiply2ToMe = multiply2

// passing the function directly to the function as param
print(math.performOperation(inputArray: arrayToBeProcessed, operation: multiply2ToMe))

Sortie:

[3, 5, 7, 9, 11, 13, 10, 8, 6, 4, 102]

De même, ce qui précède pourrait être réalisé en utilisant une closure

// passing the closure directly to the function as param
print(math.performOperation(inputArray: arrayToBeProcessed, operation: { $0 * 2 }))

Fonction comme type de retour d'une autre fonction

// function as return type
print(math.performComplexOperation(valueOne: 4)(5))

Sortie:

9



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow