containsValue
所在位置是kotlin.collections.containsValue
,其相关用法介绍如下。
用法:
如果映射将一个或多个键映射到指定的 value ,则返回 true
。
允许克服需要传递类型为 V
的值的 containsValue
的 type-safety 限制。
例子:
import kotlin.test.*
import java.util.*
fun main(args: Array<String>) {
//sampleStart
val map: Map<String, Int> = mapOf("x" to 1, "y" to 2)
// member containsValue is used
println("map.containsValue(1) is ${map.containsValue(1)}") // true
// extension containsValue is used when the argument type is a supertype of the map value type
println("map.containsValue(1 as Number) is ${map.containsValue(1 as Number)}") // true
println("map.containsValue(2 as Any) is ${map.containsValue(2 as Any)}") // true
println("map.containsValue(\"string\" as Any) is ${map.containsValue("string" as Any)}") // false
// map.containsValue("string") // cannot call extension when the argument type and the map value type are unrelated at all
//sampleEnd
}
输出:
map.containsValue(1) is true map.containsValue(1 as Number) is true map.containsValue(2 as Any) is true map.containsValue("string" as Any) is false
相关用法
- Kotlin containsAll用法及代码示例
- Kotlin contains用法及代码示例
- 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.containsValue。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。