Kotlin 教學【從零開始學 Kotlin 程式設計】可觀察屬性 (Observable properties)
【從零開始學 Kotlin 程式設計】
線上教學課程目錄:https://bit.ly/2Kx7GrM
Youtube 課程播放清單:https://bit.ly/3qJ5a5Q
可觀察屬性
import kotlin.properties.Delegates
var data: String by Delegates.observable("初始值") { _, oldValue, newValue ->
println("oldValue:$oldValue -> newValue:$newValue")
}
fun main() {
data = "第一次修改"
data = "第二次修改"
}
輸出結果:
oldValue:初始值 -> newValue:第一次修改
oldValue:第一次修改 -> newValue:第二次修改
可否決值 (vetoable)
import kotlin.properties.Delegates
var max: Int by Delegates.vetoable(0) { _, oldValue, newValue ->
//新值需大於舊值才會被修改
newValue > oldValue
}
fun main() {
println(max) // 0
max = 100
println(max) // 10
max = 66
println(max) // 66
}
輸出結果
0
100
100//因為 66 小於舊值,所以被否決更改此資料值
那這次的課程就介紹到這邊囉~
順帶一提,KT 線上教室,臉書粉絲團,會不定期發佈相關資訊,不想錯過最新資訊,不要忘記來按讚,加追蹤喔!也歡迎大家將這套課程分享給更多人喔。
我們下次再見囉!!!掰掰