gpt4 book ai didi

kotlin - 从内部 switch 语句 Kotlin 开始

转载 作者:行者123 更新时间:2023-12-02 18:03:43 26 4
gpt4 key购买 nike

when(message) {
.startsWith("hey")
}

如何检查我的字符串是否以 Kotlin 中 switch 语句内的某个单词开头?

最佳答案

您可以使用不带参数的when:

val msg = "This is some message"

when {
msg.startsWith("This") -> println("Starts with This")
msg.startsWith("That") -> println("Starts with That")
else -> println("Doesn't start with This or That")
}

输出:

Starts with This

关于kotlin - 从内部 switch 语句 Kotlin 开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73769843/

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