热门IT资讯网

Swift 函数使用方法

发表于:2024-11-28 作者:热门IT资讯网编辑
编辑最后更新 2024年11月28日,说明:func 声明一个函数, ->用来分隔函数参数和返回值//demo1 返回不同类型的值func greet(name: String,what: String ) -> String{retur

说明:func 声明一个函数, ->用来分隔函数参数和返回值


//demo1 返回不同类型的值

func greet(name: String,what: String ) -> String{

return "Hello \(name), today is \(what)"

}

let string = greet("zhongkun","wednesday")

println("print: \(string)")


func getGasPrices() ->(Double,Double,Double){

return (1.1,2.1,3.1)

}

println("getGasPrices: \(getGasPrices())")


//传入不同的参数

func sumOf(numbers: Int...) -> Int {

var sum = 0

for number in numbers {

sum += number

}

return sum

}

sumOf()

sumOf(42, 597, 12)


//函数可以嵌套

func returnFifteen() -> Int {

var y = 10

func add() {

y += 5

}

add()

return y

}

returnFifteen()

println("nested Function: \(returnFifteen())");


//返回值类型可以是一个函数

func funcReturnTwo() -> (Int -> Int){

func addOne(number:Int) -> Int {

return number+1

}

return addOne

}


var addOneResult = funcReturnTwo()

let resultReturn = addOneResult(30)

println("functionReturn:\(resultReturn)")


//函数可以作为另一个函数的参数传入

func hasAnyMatches(list: Int[], condition: Int -> Bool) -> Bool {

for item in list {

if condition(item) {

return true

}

}

return false

}

func lessThanTen(number: Int) -> Bool {

return number < 10

}

var numbers = [20, 19, 7, 12]

let resultParamterFunc = hasAnyMatches(numbers, lessThanTen)

println("funcionParamter:\(resultParamterFunc)")


//其他(目前还不太清楚)

numbers.map({

(number: Int) -> Int in

let result = 3 * number

return result

})


下一章将讲解swift的对象和类

0