真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

swift中有哪些高階函數(shù)

這篇文章給大家介紹swift中有哪些高階函數(shù),內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

在成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)過程中,需要針對客戶的行業(yè)特點、產(chǎn)品特性、目標受眾和市場情況進行定位分析,以確定網(wǎng)站的風格、色彩、版式、交互等方面的設(shè)計方向。創(chuàng)新互聯(lián)還需要根據(jù)客戶的需求進行功能模塊的開發(fā)和設(shè)計,包括內(nèi)容管理、前臺展示、用戶權(quán)限管理、數(shù)據(jù)統(tǒng)計和安全保護等功能。

map

let arr = [1,2,3,4]
//map
let mapRet = arr.map{ $0 * 2 }
print(mapRet)
//[2, 4, 6, 8]

filter

//filter
let filterRet = arr.filter{ $0 % 2 == 0 }
print(filterRet)
//[2, 4]

reduce:累積操作

let reduceRet = arr.reduce(10, +)
print(reduceRet)
//20

let reduceRetTwo = arr.reduce(10, -)
print(reduceRetTwo)
//0

flatMap

使用映射函數(shù)映射每個元素,然后將結(jié)果壓縮成一個新數(shù)組

//flatMap
let results = [[1,2,3], [3,4,5]]
let allResults = results.flatMap{ $0.map{ $0 * $0 } }
print(allResults)
//[1, 4, 9, 9, 16, 25]

compactMap:過濾空值

//compactMap:過濾空值
let keys: [String?] = ["zhang san", nil, "li si", nil]
let validNames = keys.compactMap{ $0 }
print(validNames)
//["zhang san", "li si"]
let keyCount = keys.compactMap{ $0?.count }
print(keyCount)
//[9, 5]

關(guān)于swift中有哪些高階函數(shù)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


本文標題:swift中有哪些高階函數(shù)
轉(zhuǎn)載來于:http://weahome.cn/article/gisppo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部