Swift Language
スウィフトのファーストクラス市民としての機能
サーチ…
前書き
ファーストクラスのメンバーとしての機能は、オブジェクトのように特権を楽しむことができることを意味します。変数に代入したり、関数としてパラメータとして渡したり、戻り値の型として使用することができます。
関数に変数を代入する
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