作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Swift2 中,如何对包含可选值的数组执行 indexOf
操作?以下示例将无法编译:
var strings: [String?] = ["hello", nil, "world"]
let index = strings.indexOf("world")
编译器提示
“无法使用类型为“(String)”的参数列表调用indexOf”
没有 indexOf
的简单方法是:
let index: Int = {
for var i = 0; i < strings.count; i++ {
let s: String? = strings[i]
if s == "world" {
return i
}
}
return -1
}()
有没有办法使用内置的indexOf
函数?
但是,相同的示例适用于具有非可选值的数组:
var strings: [String] = ["hello", "world"]
let index = str.indexOf("world")
最佳答案
或者更简单:
let strings: [String?] = ["hello", nil, "world"]
strings.indexOf{ $0 == "world" }
这之所以有效,是因为 ==
也为可选值定义了
关于arrays - 如何对带有选项的数组执行indexOf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32050834/
我是一名优秀的程序员,十分优秀!