Swift_序列或集合的枚举:Array.enumerated(

2020-03-16  本文已影响0人  Eyes_cc

【使用】:序列或集合的枚举

// An enumeration of the elements of a sequence or collection.
// : 序列或集合的枚举
//
// `EnumeratedSequence` is a sequence of pairs (*n*, *x*), where *n*s are
// consecutive `Int` values starting at zero, and *x*s are the elements of a
// base sequence.
// : `枚举序列`是一个(*n*, *x*)序列,*n*是从0开始连续的`Int`值, *x*是序列的元素。
//
// To create an instance of `EnumeratedSequence`, call `enumerated()` on a
// sequence or collection. The following example enumerates the elements of
// an array.
// : 若要创建' EnumeratedSequence '的实例,请在序列或集合上调用`enumerated()`,下面的例子枚举了一个数组的元素。
//
//     var s = ["foo", "bar"].enumerated()
//     for (n, x) in s {
//         print("\(n): \(x)")
//     }
//     // Prints "0: foo"
//     // Prints "1: bar"
上一篇下一篇

猜你喜欢

热点阅读