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

用法:

fun Map<String, String>.toProperties(): Properties

將此 Map 轉換為 Properties 對象。

例子:

import kotlin.test.*
import java.util.*

fun main(args: Array<String>) {
//sampleStart
val map = mapOf("x" to "value A", "y" to "value B")
val props = map.toProperties()

println(props.getProperty("x")) // value A
println(props.getProperty("y", "fail")) // value B
println(props.getProperty("z", "fail")) // fail
//sampleEnd
}

輸出:

value A
value B
fail