gpt4 book ai didi

ios - Swift Associative Enum 在 fallthrough 中使用参数

转载 作者:行者123 更新时间:2023-11-28 12:38:59 27 4
gpt4 key购买 nike

这可能吗?

        switch type {
case let .dog(say): fallthrough
case let .cat(say):
print(say)
}

这不是有效的 swift 枚举,但有办法做到这一点吗?基本上我的枚举都具有相同的案例操作,但参数值会不同。

最佳答案

switch type {
case .dog(let say), .cat(let say):
print(say)
}

关于ios - Swift Associative Enum 在 fallthrough 中使用参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40006582/

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