gpt4 book ai didi

swift - 无法使用类型为 'sizeof' 的参数列表调用 '([Double])'

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:27 24 4
gpt4 key购买 nike

我在调用 sizeof 时收到此错误消息。

/Users/MNurdin/Documents/iOS/xxxxx/ViewController.swift:46:58: Cannot invoke 'sizeof' with an argument list of type '([Double])'

我的代码

let wts: [Double]  = [ -30 , 20 , 20 ]
let weights: NSData = NSData(bytes: wts, length: sizeof(wts))

我做错了什么?

最佳答案

不要在实例上使用 sizeof(),它需要一个类型。请改用 sizeofValue()

let wts: [Double] = [-30, 20, 20]
let weights = NSData(bytes: wts, length: sizeofValue(wts) * wts.count)

请注意,您需要将 sizeofValue 的值乘以数组的计数,因为它将返回数组中每个元素的大小,而不是整个数组的大小。

关于swift - 无法使用类型为 'sizeof' 的参数列表调用 '([Double])',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31275203/

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