gpt4 book ai didi

swift - Swift for 循环中的模式匹配

转载 作者:行者123 更新时间:2023-11-30 13:00:58 25 4
gpt4 key购买 nike

似乎应该有一种“更快速”的方法来做到这一点 - 但我仍然在思考在 Swift 中进行模式匹配的各种方法。

假设我有一个 AnyObject 数组,我想循环遍历它,如果该项目是一个 Int 并且 Int 是 5 的倍数,那么我想将其打印出来。这是我最初的有效方法:

let myStuff: [AnyObject] = [5, "dog", 11, 15, "cat"]

for item in myStuff {
if let myInt = item as? Int where myInt % 5 == 0 {
print ("\(item)")
}
}

老实说,这还不错……但是有了 Swift 的所有模式匹配语法,我似乎应该能够将逻辑合并到 1 行。到目前为止,我还没有找到一种有效的方法 - 但我期望能够做类似的事情:

//This doesn't work, but I feel like something similar to this should
for item in myStuff where item is Int, item % 5 == 0 {
print ("\(item)")
}

显然,这不是什么大不了的事 - 但这对我来说更像是一次思考练习,可以更好地理解 Swift 的模式匹配。

最佳答案

您可以组合 pattern matching conditional cast带有 where 子句,如下所示:

let myStuff: [AnyObject] = [5, "dog", 11, 15, "cat"]

// item will be an Int, and divisible by 5
for case let item as Int in myStuff where item % 5 == 0 {
print(item)
}

// Prints:
// 5
// 15

关于swift - Swift for 循环中的模式匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39913158/

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