Kotlin containsValue用法及代码示例

本文方法及代码示例基于Kotlin 2.1.20 Released

containsValue 所在包 kotlin.collections.containsValue,其相关用法介绍如下:

用法:

kotlin 复制代码
fun <K, V> Map<K, V>.containsValue(value: V): Boolean

如果映射将一个或多个键映射到指定的 value ,则返回 true

允许克服需要传递类型为 V 的值的 containsValue 的 type-safety 限制。

代码示例:

kotlin 复制代码
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

相关方法

相关推荐
o***11142 分钟前
【MySQL】MySQL库的操作
android·数据库·mysql
4***576 分钟前
MySQL 数据增删改查
android·数据库·mysql
修炼者4 小时前
Android Studio的技巧
android·android studio
雨白4 小时前
ARouter 入门指南:从基本跳转到对象传递
android
用户69371750013845 小时前
17.Kotlin 类:类的形态(四):枚举类 (Enum Class)
android·后端·kotlin
h***34635 小时前
MS SQL Server 实战 排查多列之间的值是否重复
android·前端·后端
用户69371750013845 小时前
16.Kotlin 类:类的形态(三):密封类 (Sealed Class)
android·后端·kotlin
年小个大7 小时前
优化App启动时间?startup-coroutine是什么?
性能优化·架构·kotlin
摆烂积极分子7 小时前
安卓开发学习-安卓版本
android·学习
n***26569 小时前
MySQL JSON数据类型全解析(JSON datatype and functions)
android·mysql·json