KFucntion
-
[Kotlin] Reference and ReflectionKotlin 2019. 10. 22. 00:05
필자는 Method Reference에 관하여 종종 많이 접할 수 있다. 안드로이드 스튜디오에서도 객체에 접근하기 위하여 객체::변수명, 객체::함수명 이런식으로 접근하는 걸 볼 수 있다. 오늘은 Reference가 무엇인지 살펴보자. Property references class Person(val name: String, var age: Int) { fun present() = "I'm $name, and I'm $age years old" fun greet(other: String) = "Hi, $other, I'm $name" } fun main() { val reference = Person::name //methodReference println("reference $reference") va..