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]