logo
  • 教程列表
  • SO官方文檔
  • 委託屬性
    • 可觀察的屬性
    • 定製授權
    • 延遲初始化
    • 地圖支援的屬性
    • 委託可以用作減少樣板的圖層
  1. StackOverflow 文件
  2. Kotlin 教程
  3. 委託屬性
  4. 可觀察的屬性

可觀察的屬性

Created: November-22, 2018

var foo : Int by Delegates.observable("1") { property, oldValue, newValue ->
    println("${property.name} was changed from $oldValue to $newValue")
}
foo = 2

該示例列印 foo was changed from 1 to 2

  • 定製授權
  • 委託屬性

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明