toList
所在位置是kotlin.toList
,其相關用法介紹如下。
用法一
將此對轉換為列表。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val mixedList: List<Any> = Pair(1, "a").toList()
println(mixedList) // [1, a]
println("mixedList[0] is Int is ${mixedList[0] is Int}") // true
println("mixedList[1] is String is ${mixedList[1] is String}") // true
val intList: List<Int> = Pair(0, 1).toList()
println(intList) // [0, 1]
//sampleEnd
}
輸出:
[1, a] mixedList[0] is Int is true mixedList[1] is String is true [0, 1]
用法二
將此三元組轉換為列表。
例子:
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val mixedList: List<Any> = Triple(1, "a", 0.5).toList()
println(mixedList) // [1, a, 0.5]
println("mixedList[0] is Int is ${mixedList[0] is Int}") // true
println("mixedList[1] is String is ${mixedList[1] is String}") // true
println("mixedList[2] is Double is ${mixedList[2] is Double}") // true
val intList: List<Int> = Triple(0, 1, 2).toList()
println(intList) // [0, 1, 2]
//sampleEnd
}
輸出:
[1, a, 0.5] mixedList[0] is Int is true mixedList[1] is String is true mixedList[2] is Double is true [0, 1, 2]
相關用法
- Kotlin toTypedArray用法及代碼示例
- Kotlin toByteArray用法及代碼示例
- Kotlin toBooleanStrict用法及代碼示例
- Kotlin to用法及代碼示例
- Kotlin toBooleanStrictOrNull用法及代碼示例
- Kotlin toSortedMap用法及代碼示例
- Kotlin toProperties用法及代碼示例
- Kotlin toString用法及代碼示例
- Kotlin then用法及代碼示例
- Kotlin take用法及代碼示例
- Kotlin takeWhile用法及代碼示例
- Kotlin takeLastWhile用法及代碼示例
- Kotlin takeLast用法及代碼示例
- Kotlin thenComparator用法及代碼示例
- Kotlin titlecase用法及代碼示例
- Kotlin thenBy用法及代碼示例
- Kotlin thenByDescending用法及代碼示例
- Kotlin thenDescending用法及代碼示例
- Kotlin trimIndent用法及代碼示例
- Kotlin trimMargin用法及代碼示例
- Kotlin associateBy用法及代碼示例
- Kotlin all用法及代碼示例
- Kotlin map用法及代碼示例
- Kotlin filterNot用法及代碼示例
- Kotlin reduceRight用法及代碼示例
注:本文由純淨天空篩選整理自kotlinlang.org大神的英文原創作品 kotlin.toList。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。