[Kotlin] How to convert List to an array in Kotlin?
First, implement convert function private inline fun toArray(list: List): Array { return (list as List).toTypedArray() }and then convert list to array with this function val list:List = lisfOf("harry", "potter") val array = toArray(list)If you need to put array value to vararg parameter to Java Function, you need to put * front of variable val familyName = getFamilyName(*array)When will vararg n..
Computer Language/Kotlin
2019. 9. 3. 08:28
TAG
more
Recent Post