gpt4 book ai didi

swift - 如何将数据转换为 UnsafePointer

转载 作者:行者123 更新时间:2023-12-04 09:01:00 27 4
gpt4 key购买 nike

在 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()仅当内存已绑定(bind)到指定类型时才必须使用。
关于这个主题的一些资源:
  • UnsafeRawPointer Migration Guide
  • UnsafeRawPointer API
  • 关于swift - 如何将数据转换为 UnsafePointer<UInt8>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63566744/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com