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

用法一

fun ByteArray.toTypedArray(): Array<Byte>
fun ShortArray.toTypedArray(): Array<Short>
fun IntArray.toTypedArray(): Array<Int>
fun LongArray.toTypedArray(): Array<Long>
fun FloatArray.toTypedArray(): Array<Float>
fun DoubleArray.toTypedArray(): Array<Double>
fun BooleanArray.toTypedArray(): Array<Boolean>
fun CharArray.toTypedArray(): Array<Char>

返回包含此原始數組的所有元素的 typed 對象數組。

用法二

@ExperimentalUnsignedTypes fun UIntArray.toTypedArray(): Array<UInt>
@ExperimentalUnsignedTypes fun ULongArray.toTypedArray(): Array<ULong>
@ExperimentalUnsignedTypes fun UByteArray.toTypedArray(): Array<UByte>
@ExperimentalUnsignedTypes fun UShortArray.toTypedArray(): Array<UShort>

返回包含此原始數組的所有元素的 typed 對象數組。

用法三

fun <reified T> Collection<T>.toTypedArray(): Array<T>
fun <T> Collection<T>.toTypedArray(): Array<T>

返回包含此集合的所有元素的 typed 數組。

分配一個運行時類型 T 的數組,其大小等於此集合的大小,並使用此集合的元素填充該數組。

例子:

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
val collection = listOf(1, 2, 3)
val array = collection.toTypedArray()
println(array.contentToString()) // [1, 2, 3]
//sampleEnd
}

輸出:

[1, 2, 3]