是否有一个函数可用于迭代数组并同时具有索引和元素,如python的枚举?
for index, element in enumerate(list):
...
答案 0 :(得分:1468)
是。从Swift 3.0开始,如果需要每个元素的索引及其值,可以使用enumerated()
method迭代数组。它返回由索引和数组中每个项的值组成的对的序列。例如:
for (index, element) in list.enumerated() {
print("Item \(index): \(element)")
}
在Swift 3.0之前和Swift 2.0之后,该函数被称为enumerate()
:
for (index, element) in list.enumerate() {
print("Item \(index): \(element)")
}
在Swift 2.0之前,enumerate
是一个全局函数。
for (index, element) in enumerate(list) {
println("Item \(index): \(element)")
}
答案 1 :(得分:73)
Swift 5为PdfViewer pdfViewer = new PdfViewer();
pdfViewer.LoadFile(@"Guide.pdf"); //Placing the pdf at the same location as the .cs files
提供了一个名为enumerated()
的方法。 Array
有以下声明:
enumerated()
返回一对(n,x)的序列,其中n表示从零开始的连续整数,x表示序列的元素。
在最简单的情况下,您可以将func enumerated() -> EnumeratedSequence<Array<Element>>
与for循环一起使用。例如:
enumerated()
但请注意,您不仅限于使用带有for循环的let list = ["Car", "Bike", "Plane", "Boat"]
for (index, element) in list.enumerated() {
print(index, ":", element)
}
/*
prints:
0 : Car
1 : Bike
2 : Plane
3 : Boat
*/
。事实上,如果您计划将enumerated()
与for循环一起使用,以获得类似于以下代码的内容,那么您就错了:
enumerated()
更快捷的方法是:
let list = [Int](1...5)
var arrayOfTuples = [(Int, Int)]()
for (index, element) in list.enumerated() {
arrayOfTuples += [(index, element)]
}
print(arrayOfTuples) // prints [(0, 1), (1, 2), (2, 3), (3, 4), (4, 5)]
作为替代方案,您也可以将let list = [Int](1...5)
let arrayOfTuples = Array(list.enumerated())
print(arrayOfTuples) // prints [(offset: 0, element: 1), (offset: 1, element: 2), (offset: 2, element: 3), (offset: 3, element: 4), (offset: 4, element: 5)]
与enumerated()
:
map
此外,虽然它有一些limitations,但let list = [Int](1...5)
let arrayOfDictionaries = list.enumerated().map { (a, b) in return [a : b] }
print(arrayOfDictionaries) // prints [[0: 1], [1: 2], [2: 3], [3: 4], [4: 5]]
可以替代for循环:
forEach
使用let list = [Int](1...5)
list.reversed().enumerated().forEach { print($0, ":", $1) }
/*
prints:
0 : 5
1 : 4
2 : 3
3 : 2
4 : 1
*/
和enumerated()
,您甚至可以手动迭代makeIterator()
。例如:
Array
答案 2 :(得分:50)
从Swift 2开始,需要在集合上调用枚举函数,如下所示:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
答案 3 :(得分:41)
我在寻找使用 Dictionary 的方法时找到了这个答案,事实证明它很容易适应它,只需传递元素的元组。
// Swift 2
var list = ["a": 1, "b": 2]
for (index, (letter, value)) in list.enumerate() {
print("Item \(index): \(letter) \(value)")
}
答案 4 :(得分:13)
for (index, element) in arrayOfValues.enumerate() {
// do something useful
}
或使用Swift 3 ......
for (index, element) in arrayOfValues.enumerated() {
// do something useful
}
但是,我经常将枚举与map或filter结合使用。例如,在几个阵列上运行。
在这个数组中,我想过滤奇数或偶数索引元素,并将它们从Ints转换为双打。所以enumerate()
获取索引和元素,然后过滤器检查索引,最后除去生成的元组,我将它映射到元素。
let evens = arrayOfValues.enumerate().filter({
(index: Int, element: Int) -> Bool in
return index % 2 == 0
}).map({ (_: Int, element: Int) -> Double in
return Double(element)
})
let odds = arrayOfValues.enumerate().filter({
(index: Int, element: Int) -> Bool in
return index % 2 != 0
}).map({ (_: Int, element: Int) -> Double in
return Double(element)
})
答案 5 :(得分:12)
您可以简单地使用枚举循环来获得所需的结果:
Swift 2:
for (index, element) in elements.enumerate() {
print("\(index): \(element)")
}
Swift 3&amp; 4:强>
for (index, element) in elements.enumerated() {
print("\(index): \(element)")
}
或者您可以简单地通过for循环来获得相同的结果:
for index in 0..<elements.count {
let element = elements[index]
print("\(index): \(element)")
}
希望它有所帮助。
答案 6 :(得分:8)
从Swift 3开始,它是
for (index, element) in list.enumerated() {
print("Item \(index): \(element)")
}
答案 7 :(得分:7)
这是枚举循环的公式:
for (index, value) in shoppingList.enumerate() {
print("Item \(index + 1): \(value)")
}
有关详细信息,请查看Here。
答案 8 :(得分:7)
使用.enumerate()
有效,但它不提供元素的真实索引;它只提供一个以0开头的Int,并为每个连续的元素递增1。这通常无关紧要,但与ArraySlice
类型一起使用时可能会出现意外行为。请使用以下代码:
let a = ["a", "b", "c", "d", "e"]
a.indices //=> 0..<5
let aSlice = a[1..<4] //=> ArraySlice with ["b", "c", "d"]
aSlice.indices //=> 1..<4
var test = [Int: String]()
for (index, element) in aSlice.enumerate() {
test[index] = element
}
test //=> [0: "b", 1: "c", 2: "d"] // indices presented as 0..<3, but they are actually 1..<4
test[0] == aSlice[0] // ERROR: out of bounds
这是一个有点人为的例子,在实践中它不是一个常见的问题,但我认为值得知道这可能会发生。
答案 9 :(得分:4)
Xcode 8和Swift 3:
可以使用tempArray.enumerated()
示例:
var someStrs = [String]()
someStrs.append("Apple")
someStrs.append("Amazon")
someStrs += ["Google"]
for (index, item) in someStrs.enumerated()
{
print("Value at index = \(index) is \(item)").
}
控制台:
Value at index = 0 is Apple
Value at index = 1 is Amazon
Value at index = 2 is Google
答案 10 :(得分:3)
对于那些想使用forEach
的人。
雨燕4
extension Array {
func forEachWithIndex(_ body: (Int, Element) throws -> Void) rethrows {
try zip((startIndex ..< endIndex), self).forEach(body)
}
}
或
array.enumerated().forEach { ... }
答案 11 :(得分:3)
为完整起见,您可以简单地遍历数组索引并使用下标访问相应索引处的元素:
let list = [100,200,300,400,500]
for index in list.indices {
print("Element at:", index, " Value:", list[index])
}
每次使用
list.indices.forEach {
print("Element at:", $0, " Value:", list[$0])
}
使用集合enumerated()
方法。请注意,它返回包含offset
和element
的元组的集合:
for item in list.enumerated() {
print("Element at:", item.offset, " Value:", item.element)
}
使用forEach:
list.enumerated().forEach {
print("Element at:", $0.offset, " Value:", $0.element)
}
那些会打印
元素位于:0值:100
元素位于:1个值:200
元素位于:2个值:300
元素位于:3个值:400
元素位于:4个值:500
如果需要数组索引(而不是偏移量)及其元素,则可以扩展Collection并创建自己的方法来枚举其索引:
extension Collection {
func enumeratedIndices(body: ((index: Index, element: Element)) throws -> ()) rethrows {
var index = startIndex
for element in self {
try body((index,element))
formIndex(after: &index)
}
}
}
测试:
let list = ["100","200","300","400","500"]
list.dropFirst(2).enumeratedIndices {
print("Index:", $0.index, "Element:", $0.element)
}
这将p [rint
索引:2个元素:300
索引:3个元素:400
索引:4元素:500
答案 12 :(得分:2)
我个人更喜欢使用forEach
方法:
list.enumerated().forEach { (index, element) in
...
}
您也可以使用简短版本:
list.enumerated().forEach { print("index: \($0.0), value: \($0.1)") }
答案 13 :(得分:1)
在函数式编程中像这样使用 .enumerated():
list.enumerated().forEach { print($0.offset, $0.element) }
答案 14 :(得分:0)
对于您想做的事情,应该在 Array 上使用enumerated()
方法:
for (index, element) in list.enumerated() {
print("\(index) - \(element)")
}
答案 15 :(得分:-1)
我们调用了enumerate函数来实现这一点。喜欢
对于array.enumerate()中的(索引,元素){
//索引是数组的索引位置
// element是数组的元素
}