Delegates.notNull所在位置是kotlin.properties.Delegates.notNull,其相關用法介紹如下。

用法:

fun <T : Any> notNull(): ReadWriteProperty<Any?, T>

返回具有非 null 值的讀/寫屬性的屬性委托,該值不是在對象構造期間而是在以後初始化。在分配初始值之前嘗試讀取屬性會導致異常。

例子:

import kotlin.properties.Delegates

import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
var max: Int by Delegates.notNull()

// println(max) // will fail with IllegalStateException

max = 10
println(max) // 10
//sampleEnd
}

輸出:

10