Suche…


Einführung

Funktioniert als First-Class-Member, es kann Privilegien genießen wie Objekte. Es kann einer Variablen zugewiesen werden, als Parameter an eine Funktion übergeben oder als Rückgabetyp verwendet werden.

Funktion einer Variablen zuweisen

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))

Ausgabe:

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

In ähnlicher Weise könnte das Obige mit einem closure erreicht werden

// 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))

Funktion als Argument an eine andere Funktion übergeben, wodurch eine Funktion höherer Ordnung erstellt wird

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))

Ausgabe:

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

In ähnlicher Weise könnte das Obige mit einem closure erreicht werden

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

Funktion als Rückgabetyp von einer anderen Funktion

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

Ausgabe:

9



Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow