Swift Data.subdata失败,显示EXC_BAD_INSTRUCTION(代码= EXC_I386_INVOP,子代码= 0x0)

时间:2019-02-14 20:57:59

标签: swift

我正在尝试从 Data 对象检索数据的子集。当我尝试使用 subdata(in:)获取数据时,出现上述错误。我无法弄清楚我做错了什么,因为所有值似乎都正确。有问题的代码是:

let tempData = incomingDataBuffer.subdata(in: 0..<headerSizeInBytes)

我使用lldb进行了调查,发现一切看起来都是正确的。

(lldb) po incomingDataBuffer.count
8

(lldb) po headerSizeInBytes
6

(lldb) po incomingDataBuffer
▿ 8 bytes
  - count : 8
  ▿ pointer : 0x0000600000002a42
    - pointerValue : 105553116277314
  ▿ bytes : 8 elements
    - 0 : 17
    - 1 : 6
    - 2 : 29
    - 3 : 49
    - 4 : 2
    - 5 : 0
    - 6 : 1
    - 7 : 6

(lldb) po incomingDataBuffer.subdata(in: 0..<headerSizeInBytes)
error: Execution was interrupted, reason: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0).
The process has been returned to the state before expression evaluation.

这对我来说没有任何意义。所有值显示正确。没有什么是零。我为什么会失败?感谢帮助。 :)

1 个答案:

答案 0 :(得分:1)

Data值(或一般而言,集合的值)的索引不一定是从零开始的。 切片与原始数据共享索引。示例:

let buffer = Data(bytes: [1, 2, 3, 4, 5, 6])[2..<4]

print(buffer.count) // 2
print(buffer.indices) // 2..<4

let tmpData = buffer.subdata(in: 0..<2)
//  Thread 1: EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0)

因此,您必须考虑起始索引:

let tmpData = buffer[buffer.startIndex ..< buffer.startIndex + 2]
print(tmpData as NSData) // <0304>

或仅使用前缀

let tmpData = buffer.prefix(2)
print(tmpData as NSData) // <0304>

适用于您的情况:

let tempData = incomingDataBuffer.prefix(headerSizeInBytes)