美文网首页KotlinAndroid
[WIP]Kotlin怎么生成singleton

[WIP]Kotlin怎么生成singleton

作者: 假装在去天使之城的路上 | 来源:发表于2018-07-06 11:53 被阅读8次
    class Repository private constructor() {
    
        companion object {
            val instance: Repository by lazy {
                Repository()
            }
        }
    }
    

    详细解释:
    https://medium.com/@BladeCoder/kotlin-singletons-with-argument-194ef06edd9e

    相关文章

      网友评论

        本文标题:[WIP]Kotlin怎么生成singleton

        本文链接:https://www.haomeiwen.com/subject/lomvuftx.html