0
0

More than 3 years have passed since last update.

【Kotlin 初学者】setの使い方

Posted at

setについて

KotlinではSetter,Getterを省略してくれますすが、今回はカスタムして書いてみます。

var text: String = ""
  set(value) {
    field = value
    if(field == "name"){
      binding.text = ""
    } else {
      ""
    }
  }

fun test(){
  type = "name"
  // typeの中に文字列が入ってるのでsetが実行される
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0