美文网首页
Swift_序列或集合的枚举:Array.enumerated(

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

作者: Eyes_cc | 来源:发表于2020-03-16 17:47 被阅读0次

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

    // 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"
    

    相关文章

      网友评论

          本文标题:Swift_序列或集合的枚举:Array.enumerated(

          本文链接:https://www.haomeiwen.com/subject/khpnehtx.html