如何将 Data 转换为 UnsafePointer<UInt8>?
How to convert Data to UnsafePointer<UInt8>?
在 Swift 中,我想将类型为 Data
的数据缓冲区(名为 data
)传递给接受指针的 C 函数(名为 do_something
)输入 UnsafePointer<UInt8>
.
下面的代码示例是否正确?如果是这样,在这种情况下可以使用 assumingMemoryBound(to:)
而不是 bindMemory(to:capacity:)
吗?
data.withUnsafeBytes { (unsafeBytes) in
let bytes = unsafeBytes.baseAddress!.assumingMemoryBound(to: UInt8.self)
do_something(bytes, unsafeBytes.count)
}
正确的方法是使用bindMemory()
:
data.withUnsafeBytes { (unsafeBytes) in
let bytes = unsafeBytes.bindMemory(to: UInt8.self).baseAddress!
do_something(bytes, unsafeBytes.count)
}
assumingMemoryBound()
必须仅在内存已绑定到指定类型时使用。
有关此主题的一些资源:
在 Swift 中,我想将类型为 Data
的数据缓冲区(名为 data
)传递给接受指针的 C 函数(名为 do_something
)输入 UnsafePointer<UInt8>
.
下面的代码示例是否正确?如果是这样,在这种情况下可以使用 assumingMemoryBound(to:)
而不是 bindMemory(to:capacity:)
吗?
data.withUnsafeBytes { (unsafeBytes) in
let bytes = unsafeBytes.baseAddress!.assumingMemoryBound(to: UInt8.self)
do_something(bytes, unsafeBytes.count)
}
正确的方法是使用bindMemory()
:
data.withUnsafeBytes { (unsafeBytes) in
let bytes = unsafeBytes.bindMemory(to: UInt8.self).baseAddress!
do_something(bytes, unsafeBytes.count)
}
assumingMemoryBound()
必须仅在内存已绑定到指定类型时使用。
有关此主题的一些资源: