26 lines
466 B
Kotlin
26 lines
466 B
Kotlin
import kotlin.reflect.KProperty
|
|
|
|
class Delegate {
|
|
var f: Int = 42
|
|
|
|
operator fun getValue(receiver: Any?, p: KProperty<*>): Int {
|
|
println("get ${p.name}")
|
|
return f
|
|
}
|
|
|
|
operator fun setValue(receiver: Any?, p: KProperty<*>, value: Int) {
|
|
println("set ${p.name}")
|
|
f = value
|
|
}
|
|
}
|
|
|
|
class C {
|
|
var x: Int by Delegate()
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val c = C()
|
|
println(c.x)
|
|
c.x = 117
|
|
println(c.x)
|
|
} |