Kotlin Koans 34 Delegates example

目次

Delegates example (Playground)

Description

Read about delegated properties and make the property lazy by using delegates.

委譲プロパティ を読み、委譲を使用してプロパティを遅延評価してください。

Code

class LazyProperty(val initializer: () -> Int) {
    val lazyValue: Int by lazy(initializer)
}

Memo

← Posts