swift 使用enumerate()访问数组元素的索引和值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 使用enumerate()访问数组元素的索引和值相关的知识,希望对你有一定的参考价值。

//To get the index of a value when using a 'for-in' loop use enumerate() or enumerated() (Swift 3.0)
let anArray = [5, 1, 2, 3]
for (index, value) in anArray.enumerate() {
  print("Value at index: \(index), is \(value)") //Value at index: 0, is 5
}

以上是关于swift 使用enumerate()访问数组元素的索引和值的主要内容,如果未能解决你的问题,请参考以下文章

Welcome-to-Swift-12附属脚本(Subscripts)

Swift--Array 详解

致命错误:在Swift中访问10个元素的数组时,数组索引超出范围

Swift for var list.enumerated()

swift:安全访问 SCNNode 数组的字典

Rust性能分析-迭代器的enumerate方法是否会影响程序性能