ν¨μλ νΉμ κΈ°λ₯μ μ€ννκΈ° μν μ½λμ λ¬Άμμ΄λ€. λμμ λ°λΌ ν¨μμ νΉμ μ΄λ¦μ μ€μ ν μ μμΌλ©° μμ μ μννκΈ° μν΄ νΈμΆν μ μλ€.
ν¨μ μ μμ νΈμΆ (Defining and Calling Functions)
ν¨μλ₯Ό μ μν λ μ νμ μΌλ‘ νλΌλ―Έν°μ μ΄λ¦μ μ ν΄μ£Όμ΄μΌνλ€. λν λ¦¬ν΄ κ°λ μ μν μ μλ€. λͺ¨λ ν¨μλ ν¨μμ κΈ°λ₯μ λνλ΄λ κ³ μ μ μ΄λ¦μ κ°μ§κ³ μλ€. ν¨μλ₯Ό μ¬μ©νκΈ° μν΄μλ νΈμΆμ ν΄μΌνλ©° μκ·λ¨ΌνΈμ κ°μ λ£μ΄ μ£Όμ΄μΌ νλ€. μκ·λ¨ΌνΈλ νλΌλ―Έν°μ μμμ νμ κ°μμΌ νλ€.
ν¨μ νλΌλ―Έν°μ λ°νκ° (Function Parameters and Return Values)
Swiftλ λ§€μ° μ μ°ν νλΌλ―Έν°μ λ°νκ°μ κ°μ§κ³ μλ€.
νλΌλ―Έν°κ° μλ ν¨μ (Functions Without Parameters)
ν¨μλ νμ νλΌλ―Έν°λ₯Ό μ μνμ§ μμλ λλ€. μμ μ½λλ₯Ό 보면 μ λ ₯ μ½λκ° μκΈ° λλ¬Έμ νμ κ°μ Stringμ λ°ννλ€.
func sayHelloWorld() -> String {
return "hello, world"
}
print(sayHelloWorld())
// Prints "hello, world"
μ¬λ¬κ° νλΌλ―Έν°κ° μλ ν¨μ (Functions With Multiple Parameters)
ν¨μλ ν¨μμ μκ΄νΈ λ΄μ μ½€λ§λ‘ ꡬλΆνμ¬ μ¬λ¬κ°μ μ λ ₯ νλΌλ―Έν°λ₯Ό κ°μ§ μ μλ€.
func greet(person: String, alreadyGreeted: Bool) -> String {
if alreadyGreeted {
return greetAgain(person: person)
} else {
return greet(person: person)
}
}
print(greet(person: "Tim", alreadyGreeted: true))
// Prints "Hello again, Tim!"
λ°νκ° μλ ν¨μ (Functions Without Return Values)
func greet(person: String) {
print("Hello, \(person)!")
}
greet(person: "Dave")
// Prints "Hello, Dave!"
NOTEβοΈ
μλ°ν λ§νλ©΄ greet(person:) ν¨μλ λ°νκ°μ μ μνμ§ μμμ§λ§ μ¬μ ν λ°νκ°μ΄ μλ€. λ°ν νμ μ΄ μ μλμ§ μμ ν¨μλ Void νμ μ νΉλ³ν κ°(λΉνν())μ λ°ννλ€.
μ¬λ¬κ°μ λ°νκ°μ΄ μλ ν¨μ (Functions with Multiple Return Values)
μ¬λ¬κ°μ κ°μ λ°ννκΈ° μν΄ ν¨μμ λ°ν νμ μΌλ‘ νν νμ μ μ¬μ©ν μ μλ€.
func minMax(array: [Int]) -> (min: Int, max: Int) {
var currentMin = array[0]
var currentMax = array[0]
for value in array[1..<array.count] {
if value < currentMin {
currentMin = value
} else if value > currentMax {
currentMax = value
}
}
return (currentMin, currentMax)
}
ν¨μ μΈμ λΌλ²¨κ³Ό νλΌλ―Έν° μ΄λ¦ (Function Argument Labels and Parameter Names)
ν¨μμ νλΌλ―Έν°μ κ³ μ μ μ΄λ¦μ λΆμ¬ν μ μλ€.
μκ·λ¨ΌνΈ λΌλ²¨ μ§μ (Specifying Argument Labels)
곡백μΌλ‘ ꡬλΆνμ¬ νλΌλ―Έν° μ΄λ¦ μμ μκ·λ¨ΌνΈ λΌλ²¨μ μμ±νλ€.
func someFunction(argumentLabel parameterName: Int) {
// In the function body, parameterName refers to the argument value
// for that parameter.
}
func greet(person: String, from hometown: String) -> String {
return "Hello \(person)! Glad you could visit from \(hometown)."
}
print(greet(person: "Bill", from: "Cupertino"))
// Prints "Hello Bill! Glad you could visit from Cupertino."
νλΌλ―Έν° κΈ°λ³Έκ° (Default Parameter Values)
νλΌλ―Έν°μ νμ λ€μ νλΌλ―Έν° κ°μ ν λΉνμ¬ ν¨μμ νλΌλ―Έν°μ κΈ°λ³Έκ° (default value) μ μ μν μ μλ€.
func someFunction(parameterWithoutDefault: Int, parameterWithDefault: Int = 12) {
// If you omit the second argument when calling this function, then
// the value of parameterWithDefault is 12 inside the function body.
}
someFunction(parameterWithoutDefault: 3, parameterWithDefault: 6) // parameterWithDefault is 6
someFunction(parameterWithoutDefault: 4) // parameterWithDefault is 12
κΈ°λ³Έκ°μ κ°μ§κ³ μμ§ μμ νλΌλ―Έν°κ° λμ± μ€μν μλ―Έλ₯Ό κ°μ§κ³ μκΈ° λλ¬Έμ νλΌλ―Έν° λͺ©λ‘μ μμ μμΉν΄μΌ νλ€
In-Out νλΌλ―Έν° (In-Out Parameters)
ν¨μμ νλΌλ―Έν°λ κΈ°λ³Έμ μΌλ‘ μμμ΄λ€. κ·Έλ κΈ° λλ¬Έμ ν΄λΉ ν¨μμ λ°λ λ΄μμ ν¨μμ νλΌλ―Έν° κ° λ³κ²½μ μλνλ©΄ μ»΄νμΌ μλ¬κ° λ°μνλ€. μ΄λ νλΌλ―Έν°μ κ°μ λ³κ²½νκΈ° μν΄μλ in-out ν€μλκ° νμνλ€. ν¨μμ μμ κ°λ₯ν¨μ μ리기 μν΄ in-out νλΌλ―Έν° μκ·λ¨ΌνΈμ &λ₯Ό λΆμ¬μ€λ€.
var someInt = 3
var anotherInt = 107
swapTwoInts(&someInt, &anotherInt)
print("someInt is now \(someInt), and anotherInt is now \(anotherInt)")
// Prints "someInt is now 107, and anotherInt is now 3"
'π¦ Swift' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
Enumerations (0) | 2022.06.15 |
---|---|
Closures (0) | 2022.06.15 |
Control Flow (0) | 2022.06.01 |
Collection Types (0) | 2022.05.22 |
Strings and Characters (0) | 2022.05.22 |