我正在尝试从循环中的数组中抓取一批3。我觉得Swift一定有更优雅的方法。
以下是我目前掌握的情况:
for (index, item) in allItems.enumerate() {
var batch: [MyType] = []
if index < allItems.endIndex {
batch.append(allItems[index])
}
if index + 1 < allItems.endIndex {
batch.append(allItems[index + 1])
}
if index + 2 < allItems.endIndex {
batch.append(allItems[index + 2])
}
sendBatchSomewhere(batch)
}
有什么更好更安全的方法来实现抓取一批吗?中间很容易,但当然处理开始和结束有点棘手。有什么快速的想法吗?
更新日期:
谢谢,这个很好用!下面是游戏版:
import Foundation
typealias MyType = (a: String, b: Int, c: Int)
let allItems1: [MyType] = []
let allItems2 = [
(a: "Item 1", b: 2, c: 3)
]
let allItems3 = [
(a: "Item 1", b: 2, c: 3),
(a: "Item 2", b: 4, c: 5),
(a: "Item 3", b: 6, c: 7),
(a: "Item 4", b: 8, c: 9),
(a: "Item 5", b: 10, c: 11),
(a: "Item 6", b: 12, c: 13),
(a: "Item 7", b: 14, c: 15),
(a: "Item 8", b: 16, c: 17),
(a: "Item 9", b: 18, c: 19),
(a: "Item 10", b: 20, c: 21),
(a: "Item 11", b: 22, c: 23)
]
let testItems = allItems3 // Change to allItems1, allItems2, allItems3, etc
let batchSize = 3
let output = testItems.indices.map { fromIndex -> [MyType] in
let toIndex = fromIndex.advancedBy(batchSize, limit: testItems.endIndex)
return Array(testItems[fromIndex ..< toIndex])
}
print(output) =>
[
[("Item 1", 2, 3), ("Item 2", 4, 5), ("Item 3", 6, 7)],
[("Item 2", 4, 5), ("Item 3", 6, 7), ("Item 4", 8, 9)],
[("Item 3", 6, 7), ("Item 4", 8, 9), ("Item 5", 10, 11)],
[("Item 4", 8, 9), ("Item 5", 10, 11), ("Item 6", 12, 13)],
[("Item 5", 10, 11), ("Item 6", 12, 13), ("Item 7", 14, 15)],
[("Item 6", 12, 13), ("Item 7", 14, 15), ("Item 8", 16, 17)],
[("Item 7", 14, 15), ("Item 8", 16, 17), ("Item 9", 18, 19)],
[("Item 8", 16, 17), ("Item 9", 18, 19), ("Item 10", 20, 21)],
[("Item 9", 18, 19), ("Item 10", 20, 21), ("Item 11", 22, 23)],
[("Item 10", 20, 21), ("Item 11", 22, 23)],
[("Item 11", 22, 23)]
]
4条答案
按热度按时间cigdeys31#
你可以使用切片和三参数形式的
advancedBy()
,它带有一个限制参数。输出量:
如果您想要一个包含所有批次的数组,则可以使用
map()
而不是forEach()
:输出量:
e0uiprwp2#
下面是一个扩展方法(应该也是安全的),它应该可以在任何地方重用:
5cnsuln73#
希望你会寻找这个
8qgya5xd4#
这是一个自定义的ArrayIterator,它已经在我们的案例中工作过了。也许它对将来来这里的任何人都有帮助
}