Delegated properties(Kotlin)


Delegated properties(Kotlin)

2022.08.19 - [코틀린] - Kotlin 'by' (Delegation_Kotlin) Kotlin 'by' (Delegation_Kotlin) 코틀린으로 개발을 하다 보면 'by'를 자주 쓰게 된다. 간단한 예제를 통해 by가 어떤 의미로 코틀린에서 쓰이는지 기록해본다. -예시 interface Home { fun sleep() } class HomeImpl(val owner: String) : Home.. programmmingphil.tistory.com -Delegation property Property의 접근자 로직(ex get, set 등)을 다른 객체에 위임하는 것이다. -예시 적용 전 class Home(private val _tv: String, private val _roomN..


원문링크 : Delegated properties(Kotlin)