Поиск…


Вступление

Функции как первоклассные члены означают, что они могут пользоваться привилегиями, как это делают объекты. Он может быть назначен переменной, переданной функции в качестве параметра или может использоваться как возвращаемый тип.

Назначение функции переменной

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

Выход:

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

Аналогичным образом вышеуказанное может быть достигнуто с использованием 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))

Передача функции в качестве аргумента другой функции, тем самым создавая функцию более высокого порядка

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

Выход:

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

Аналогичным образом вышеуказанное может быть достигнуто с использованием closure

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

Функция типа возврата из другой функции

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

Выход:

9



Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow