gpt4 book ai didi

ios - Swift:从枚举中的 'index' 获取 double 值

转载 作者:行者123 更新时间:2023-11-28 11:23:47 25 4
gpt4 key购买 nike

在像这样的简单 Swift 枚举中:

for (index, value) in enumerate(array) {
let indexValue = idx as NSNumber
let double = indexValue.doubleValue
.... }

是否有更简单的方法将“索引”值转换为 double 值?

最佳答案

是的,有:

for (index, value) in enumerate(array) {
let doubleVal = Double(index)
}

Swift 中的数字类型通常有一个接受任何其他数字类型的 init 方法。

关于ios - Swift:从枚举中的 'index' 获取 double 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24174499/

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