Swift閉包(Closure)

來源:互聯網
上載者:User

標籤:swift   swift教程   swift視頻   ios   蘋果   

文法: 

{ (parameters) ->return type in statements}

 執行個體:採用函數實現:

 

let names =["Chris", "Alex", "Ewa", "Barry", "Daniella"]funcbackwards(s1: String, s2: String) -> Bool {return s1 > s2}var reversed = sort(names, backwards)println(reversed)//sort 排序函數,backwards 通過定序的函數 採用閉包實現:var reversed = sort(names, { (s1: String, s2: String) -> Bool inreturn s1 > s2 })println(reversed)

Swift交流討論論壇論壇:http://www.cocoagame.net

歡迎加入Swift技術交流群:362298485



相關文章

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.