component2所在位置是kotlin.collections.component2,其相關用法介紹如下。

用法一

operator fun <T> Array<out T>.component2(): T
operator fun ByteArray.component2(): Byte
operator fun ShortArray.component2(): Short
operator fun IntArray.component2(): Int
operator fun LongArray.component2(): Long
operator fun FloatArray.component2(): Float
operator fun DoubleArray.component2(): Double
operator fun BooleanArray.component2(): Boolean
operator fun CharArray.component2(): Char
@ExperimentalUnsignedTypes operator fun UIntArray.component2(): UInt
@ExperimentalUnsignedTypes operator fun ULongArray.component2(): ULong
@ExperimentalUnsignedTypes operator fun UByteArray.component2(): UByte
@ExperimentalUnsignedTypes operator fun UShortArray.component2(): UShort

從數組中返回第二個 element

如果此數組的大小小於 2,則拋出 IndexOutOfBoundsException,除非在 Kotlin/JS 中未指定行為。

用法二

operator fun <T> List<T>.component2(): T

從列表中返回第二個 element

如果此列表的大小小於 2,則拋出 IndexOutOfBoundsException

用法三

operator fun <K, V> Entry<K, V>.component2(): V

返回映射條目的值組件。

此方法允許在使用Map時使用解構聲明,例如:

for ((key, value) in map) {
    // do something with the key and the value
}