gpt4 book ai didi

ios - 条件语句中的守卫

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

根据 units 参数的值,我想使用 guard 解包华氏温度或摄氏温度。但是,我得到一个关于

的错误

Use of unresolved identifier 'temp'

来自以下示例代码

let units = 0

if units == 0 {
guard let temp = currentDict["temp_f"] as? String else { return nil }
} else {
guard let temp = currentDict["temp_c"] as? String else { return nil }
}

为什么 guard 在此示例中不起作用?

最佳答案

它不起作用,因为 temp 的范围仅限于 if 语句。试试这个:

let key = units == 0 ? "temp_f" : "temp_c"
guard let temp = currentDict[key] as? String else { return nil }

关于ios - 条件语句中的守卫,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37601435/

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