0
func readByte(bytes: [UInt8], offset: UInt8) -> UInt8 {
    return bytes[offset] // Error: Cannot subscript a value of type '[UInt8]' with an index of type 'UInt8'
}

如果将偏移量更改为任何其他 Int 将导致相同的错误。但是,如果我使用 bytes[0] 没有问题。可能是因为 Swift 知道预期的类型并相应地转换 0。我想知道那是什么类型。

4

1 回答 1

1

数组是由 索引的集合Int

public struct Array<Element> : RandomAccessCollection, MutableCollection {
    // ...
    public typealias Index = Int
    // ...
    public subscript(index: Int) -> Element
    // ...
}

在你的情况下:

func readByte(bytes: [UInt8], offset: Int) -> UInt8 {
    return bytes[offset]
}
于 2016-09-15T08:46:50.527 回答