gpt4 book ai didi

Swift switch case 语句可以有多个参数吗?

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

如果我在枚举中设置了我的案例,我可以在一个 switch 语句中调用多个这些案例吗?又名 case .a, .b: return true

enum myLetters {
case a
case b
case c

var myCondition: Bool {
switch self {
case .a, .b: return true
case .c: return false
default: return false
}
}
}

最佳答案

是的,看看 Swift 的 documentationswitch 语句上。

为了实现你想要的,你需要检查myLetters的当前值:

var myCondition: Bool {
switch self {
case .a, .b: return true
case .c: return false
}
}

关于Swift switch case 语句可以有多个参数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44790984/

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