gpt4 book ai didi

ios - FlatMap 对 Int 类型数组发出警告,但对 String 类型数组则不发出警告

转载 作者:行者123 更新时间:2023-12-02 00:35:45 24 4
gpt4 key购买 nike

当我将 flatMapString 类型数组一起使用时,它没有给出任何警告,而在 Int 类型数组的情况下它会给出警告。为什么?示例:

let strings = [
"I'm excited about #SwiftUI",
"#Combine looks cool too",
"This year's #WWDC was amazing"
]
strings.flatMap{$0 + "."} //No warning

let ints = [
2,3,4
]
ints.flatMap{$0 + 1} //'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value

最佳答案

这是因为这是两种不同的flatMap方法。

所以,在回答你的问题之前,让我们退后一步考虑一下 flatMap现在的目的是,即对序列应用变换并连接结果序列。典型的例子是用于“展平”数组的数组):

let arrayOfArrays = [[1, 2], [3, 4, 5]]
let array = arrayOfArrays.flatMap { $0 }
print(array)

结果:

[1, 2, 3, 4, 5]

flatMap 已将数组数组扁平化为单个数组。

令人困惑的是,还有另一个现已弃用的 flatMap它将执行转换,将可选结果展开到序列或集合中,但删除那些nil。幸运的是,现在已更名为 compactMap以避免混淆。所以,这就是您收到警告的原因。

考虑:

let input: [Int?] = [0, 1, nil, 3]
let results = input.flatMap { $0 } // 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value
print(results)

结果:

[0, 1, 3]

因此,我们应该按照建议将 flatMap 替换为 compactMap:

let input: [Int?] = [0, 1, nil, 3]
let results = input.compactMap { $0 }
print(results)

这将为我们提供所需的结果,而不会发出警告。

<小时/>

那么,让我们回到你的例子。因为字符串是字符数组,所以它会根据您的意思并将其压平:

let strings = [
"I'm excited about #SwiftUI",
"#Combine looks cool too",
"This year's #WWDC was amazing"
]
let stringResults = strings.flatMap { $0 + "." }
print(stringResults)

其结果是一个扁平的字符数组:

["I", "\'", "m", " ", "e", "x", "c", "i", "t", "e", "d", " ", "a", "b", "o", "u", "t", " ", "#", "S", "w", "i", "f", "t", "U", "I", ".", "#", "C", "o", "m", "b", "i", "n", "e", " ", "l", "o", "o", "k", "s", " ", "c", "o", "o", "l", " ", "t", "o", "o", ".", "T", "h", "i", "s", " ", "y", "e", "a", "r", "\'", "s", " ", "#", "W", "W", "D", "C", " ", "w", "a", "s", " ", "a", "m", "a", "z", "i", "n", "g", "."]

这显然不是您想要的,但是编译器按照您的意思认为您想要将字符数组的数组(即字符串数组)展平为平面字符数组。这就是没有警告的原因。

<小时/>

不用说,在您的示例中,您既不会使用 flatMap (因为您没有处理数组的数组),也不会使用 compactMap (因为您不是处理选项)。您只需使用map:

let strings = [
"I'm excited about #SwiftUI",
"#Combine looks cool too",
"This year's #WWDC was amazing"
]
let stringsResults = strings.map { $0 + "." }
print(stringsResults)

let ints = [2, 3, 4]
let intsResults = ints.map { $0 + 1 }
print(intsResults)
<小时/>

完全不相关,但为了充分披露(但冒着使其更加困惑的风险),实际上还有另一个 flatMap方法 (!),一种Optional 类型。诚然,这是有争议的,它比数组扁平化(即序列连接)再现更不常用,但我可能应该承认它的存在。

Optional 上的这个 flatMap 方法“当此 Optional 实例不 nil 时评估给定的闭包,传递展开的值作为参数。”但如果可选值为 nil,则此 flatMap 也将返回 nil

例如:

func message(for value: Int?) -> String? {
return value.flatMap { "The value is \($0)" }
}

因此,如果value42,结果将是可选字符串“The value is 42”。但如果 valuenil,则结果将为 nil

这个 flatMap 的演绎与当前的问题无关,但为了完整起见我想提及它。

关于ios - FlatMap 对 Int 类型数组发出警告,但对 String 类型数组则不发出警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58229147/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com