美文网首页
kotlin<第六篇>:常用设计模式

kotlin<第六篇>:常用设计模式

作者: NoBugException | 来源:发表于2022-08-10 11:56 被阅读0次
    一、单例模式
    class Singleton private constructor(){
    
        companion object {
    
            @JvmStatic
            fun getInstance(): Singleton {
                return SingletonHolder.instance
            }
    
            private object SingletonHolder {
                var instance: Singleton = Singleton()
            }
        }
    
    }
    

    [未完成,后续补充]

    相关文章

      网友评论

          本文标题:kotlin<第六篇>:常用设计模式

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