美文网首页
swift---compactMap

swift---compactMap

作者: 咚咚嗒大人 | 来源:发表于2021-04-20 10:52 被阅读0次

compactMap的作用可以过滤 nil
compactMap还可以对元素做一层处理
例如:

let nums = [1, nil, 3, nil, 5]
let result = nums.compactMap { (item) -> Int? in
    return "\(item)"
}
print(result) // ["1", "3", "5"]

需要注意的就是,在对数据做处理之后,是返回一个新的result对象,原nums对象没有发生改变。

相关文章

  • swift---compactMap

    compactMap的作用可以过滤 nilcompactMap还可以对元素做一层处理例如: 需要注意的就是,在对数...

网友评论

      本文标题:swift---compactMap

      本文链接:https://www.haomeiwen.com/subject/ttoglltx.html