Delegates.observable所在位置是kotlin.properties.Delegates.observable,其相关用法介绍如下。

用法:

inline fun <T> observable(
    initialValue: T, 
    crossinline onChange: (property: KProperty<*>, oldValue: T, newValue: T) -> Unit
): ReadWriteProperty<Any?, T>

返回读取/写入属性的属性委托,该属性在更改时调用指定的回调函数。

例子:

import kotlin.properties.Delegates

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
var observed = false
var max: Int by Delegates.observable(0) { property, oldValue, newValue ->
    observed = true
}

println(max) // 0
println("observed is ${observed}") // false

max = 10
println(max) // 10
println("observed is ${observed}") // true
//sampleEnd
}

输出:

0
observed is false
10
observed is true

参数

initialValue- 属性的初始值。

onChange- 更改属性后调用的回调。调用此回调时,该属性的值已更改。