作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我确实想在女友或我最好的 friend 在那里时参加聚会,无论如何。如果他们不在那里,如果有一个凶手,我就不会去。但是,如果聚会上没有凶手,那么如果有有趣的皮特在场,我就走了。
以下是无效的Kotlin代码,因为我不能以这种方式使用.contains。有什么类似的简洁方法可以编写此代码?
val peopleAtParty = listOf("girlfriend","bestFriend","murderer","funnyPete")
val goingToParty = when(peopleAtParty.contains) {
"girlfriend","bestFriend" -> true
"murderer" -> false
"funnyPete" -> true
else -> false
}
最佳答案
这样尝试
val goingToParty = when {
peopleAtParty.contains("girlfriend") -> true
peopleAtParty.contains("bestFriend") -> true
peopleAtParty.contains("murderer") -> false
peopleAtParty.contains("funnyPete") -> true
else -> false
}
关于kotlin - 在 Kotlin 中将WHEN和LIST与CONTAINS结合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62584663/
我是一名优秀的程序员,十分优秀!