手记

Swift中单例的创建方法

不废话,直接看代码:

swift中单例的创建非常简单了,以下从不同的角度来创建单例

方法一:

//TODO: 方式一class SingleInstanceOne {//     用let 创建常量
    static let shareSingleOne = SingleInstanceOne()
  
}

let修饰的常量 --- 单例的本质

方法二:

//  方式二    --  let single = SingleTwo()class SingleTwo {    
    class var shareInstance : SingleTwo {    
        return single
    }
    
}

方法三:

// 方式三class SingleThree {
    
    
    static var shareInstance : SingleThree {        
        struct StaticSingle {
            static let instance : SingleThree = SingleThree()
        }        
        return StaticSingle.instance
    }
    
}

方法二和方法三本质一样,剩下的自己理解!!!



作者:guojie
链接:https://www.jianshu.com/p/0145044954f8

1人推荐
随时随地看视频
慕课网APP