import UIKit class SingleInstance{ static let sharedInstance = SingleInstance() //以下代码用来证明此种方式为懒汉式 init() { println("实例化") } }