gpt4 book ai didi

kotlin - 如何在 Kotlin 中实现 switch-case 语句

转载 作者:IT老高 更新时间:2023-10-28 13:34:55 27 4
gpt4 key购买 nike

如何在 Kotlin 中实现等价于 Java switch 语句代码?

switch (5) {
case 1:
// Do code
break;
case 2:
// Do code
break;
case 3:
// Do code
break;
}

最佳答案

你可以这样做:

when (x) {
1 -> print("x == 1")
2 -> print("x == 2")
else -> { // Note the block
print("x is neither 1 nor 2")
}
}

摘自 official help

关于kotlin - 如何在 Kotlin 中实现 switch-case 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53138172/

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