contains
所在位置是kotlin.collections.contains
,其相关用法介绍如下。
用法一
@DeprecatedSinceKotlin("1.4", "1.6", "1.7") operator fun FloatArray.contains(
element: Float
): Boolean
已弃用:该函数在搜索NaN 或零值时行为不明确,很快就会被删除。使用 'any { it == element }' 来继续使用此行为,或使用 '.asList().contains(element: T)' 来获得与列表中相同的搜索行为。@DeprecatedSinceKotlin("1.4", "1.6", "1.7") operator fun DoubleArray.contains(
element: Double
): Boolean
已弃用:该函数在搜索NaN 或零值时行为不明确,很快就会被删除。使用 'any { it == element }' 来继续使用此行为,或使用 '.asList().contains(element: T)' 来获得与列表中相同的搜索行为。如果在数组中找到 element,则返回 true
。
用法二
如果在集合中找到 element,则返回 true
。
用法三
检查Map是否包含给定的键。
此方法允许使用x in map
语法来检查对象是否包含在Map中。
例子:
import kotlin.test.*
import java.util.*
fun main(args: Array<String>) {
//sampleStart
val map: Map<String, Int> = mapOf("x" to 1)
println("map.contains(\"x\") is ${map.contains("x")}") // true
println("\"x\" in map is ${"x" in map}") // true
println("map.contains(\"y\") is ${map.contains("y")}") // false
println("\"y\" in map is ${"y" in map}") // false
//sampleEnd
}
输出:
map.contains("x") is true "x" in map is true map.contains("y") is false "y" in map is false
相关用法
- Kotlin containsAll用法及代码示例
- Kotlin containsValue用法及代码示例
- Kotlin contentToString用法及代码示例
- Kotlin contentEquals用法及代码示例
- Kotlin commonPrefixWith用法及代码示例
- Kotlin code用法及代码示例
- Kotlin copyOf用法及代码示例
- Kotlin component2用法及代码示例
- Kotlin coerceIn用法及代码示例
- Kotlin coerceAtMost用法及代码示例
- Kotlin coerceAtLeast用法及代码示例
- Kotlin commonSuffixWith用法及代码示例
- Kotlin component1用法及代码示例
- Kotlin capitalize用法及代码示例
- Kotlin chunkedSequence用法及代码示例
- Kotlin chunked用法及代码示例
- Kotlin associateBy用法及代码示例
- Kotlin all用法及代码示例
- Kotlin map用法及代码示例
- Kotlin filterNot用法及代码示例
- Kotlin reduceRight用法及代码示例
- Kotlin Random.Default用法及代码示例
- Kotlin Byte.inc用法及代码示例
- Kotlin getValue用法及代码示例
- Kotlin Double.dec用法及代码示例
注:本文由纯净天空筛选整理自kotlinlang.org大神的英文原创作品 kotlin.collections.contains。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。