首页 > 解决方案 > 如何在 Kotlin 中将 Set (HashSet) 转换为数组?

问题描述

我有一组字符串

 val set = HashSet<String>()
    set.add("a")
    set.add("b")
    set.add("c")

我需要将其转换为数组

val array = arrayOf("a", "b", "c")

标签: arrayskotlinsethashset

解决方案


使用扩展功能toTypedArray如下

set.toTypedArray()

该函数属于 Kotlin 库

/**
 * Returns a *typed* array containing all of the elements of this collection.
 *
 * Allocates an array of runtime type `T` having its size equal to the size of this collection
 * and populates the array with the elements of this collection.
 * @sample samples.collections.Collections.Collections.collectionToTypedArray
 */
@Suppress("UNCHECKED_CAST")
public actual inline fun <reified T> Collection<T>.toTypedArray(): Array<T> {
    @Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN")
    val thisCollection = this as java.util.Collection<T>
    return thisCollection.toArray(arrayOfNulls<T>(0)) as Array<T>
}

推荐阅读