Swift學習筆記(三十四)——函數類型__Swift

來源:互聯網
上載者:User

(1)函數也可以賦值給一個變數,此時這個變數的類型是什麼呢。

import Foundationfunc add(a:Int,b:Int) -> Int{  return a+b}let anotherAdd:(Int,Int) -> Int = addanotherAdd(3,4)

(2)如果參數的傳回值為空白,那麼這個函數類型應該怎麼寫呢。

import Foundationfunc add(a:Int,b:Int) {  var c = a + b}let anotherAdd:(Int,Int) -> () = addanotherAdd(3,4)

或者:

import Foundationfunc add(a:Int,b:Int) -> () {  var c = a + b}let anotherAdd:(Int,Int) -> () = addanotherAdd(3,4)

或者:

import Foundationfunc add(a:Int,b:Int) -> Void {  var c = a + b}let anotherAdd:(Int,Int) -> () = addanotherAdd(3,4)

或者:

import Foundationfunc add(a:Int,b:Int) -> Void {  var c = a + b}let anotherAdd:(Int,Int) -> Void = addanotherAdd(3,4)

(3)如果這個函數沒有參數,那函數類型是什麼呢。

import Foundationfunc add() {}let anotherAdd:() -> Void = addanotherAdd()

(4)排序

import Foundationvar arr = [Int]()for _ in 1...20{  arr.append(Int(arc4random()%100))}println(arr)sorted(arr)println(sorted(arr))

這個是從小到大排序,如果我想從大到小,應該怎麼辦呢。

import Foundationvar arr = [Int]()for _ in 1...20{  arr.append(Int(arc4random()%100))}println(arr)sorted(arr)println(sorted(arr))func compareTwoInts(a:Int,b:Int) -> Bool{  return a > b}println(sorted(arr,compareTwoInts))



github首頁:https://github.com/chenyufeng1991  。歡迎大家訪問。



相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.