zl程序教程

您现在的位置是:首页 >  后端

当前栏目

kotlin延迟属性

Kotlin属性 延迟
2023-06-13 09:11:06 时间

得饶人处且饶人——曹雪芹

kotlin习惯用法见:https://www.kotlincn.net/docs/reference/idioms.html

这里试试延迟属性:

https://www.kotlincn.net/docs/reference/delegated-properties.html#延迟属性-lazy

val lazyValue: String by lazy {
    println("computed!")
    "Hello"
}

println(lazyValue)
println(lazyValue)

运行结果:

computed!
Hello
Hello