gpt4 book ai didi

swift - 如何为 Swift 3 更新 UnsafePointer 的数据声明?

转载 作者:行者123 更新时间:2023-11-28 12:35:52 26 4
gpt4 key购买 nike

对于此声明,我收到以下错误:

 let data = Data(bytes: UnsafePointer<UInt8>(cubeData), count: cubeData.count * MemoryLayout<Float>.size)

cubeData 定义为:var cubeData = [Float](repeating: 0, count: size * size * size * 4)

错误:

 'init' is unavailable: use 'withMemoryRebound(to:capacity:_)' to temporarily view memory as another layout-compatible type.

我该如何解决这个问题?

谢谢!

最佳答案

你可以使用 Array.withUnsafeBufferPointer获取缓冲区指针(即指向具有其长度的数组的指针)。然后使用 Data.init(buffer:)从缓冲区指针启动数据。

let cubeData: [Float] = [1.1, 2.2, 3.3, 4.4]

let b = cubeData.withUnsafeBufferPointer { Data(buffer: $0) }

print(b as NSData)
// <cdcc8c3f cdcc0c40 33335340 cdcc8c40>

关于swift - 如何为 Swift 3 更新 UnsafePointer 的数据声明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40949075/

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