码迷,mamicode.com
首页 > 其他好文 > 详细

nil coalescing operator

时间:2014-10-17 12:02:24      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   for   2014   on   cti   log   

nil coalescing operator ?? 就是 optional和 三元运算符?:的简写形式。


例如一个optional String类型的变量


var a:String?
// println(a != nil ? a! : "shabi")
println(a ?? "shabi")    // shabi
// a ?? "shabi" equals a != nil ? a! : "shabi"
a = "hecheng"
println(a ?? "shabi")  // hecheng


// 这个运算符添加于2014-08-04 (The Swift Programming Language Revision History)


AFNetWorking的创始人 Mattt Thompson在他的个人博客里就曾用过这个运算符:

http://nshipster.com/swift-literal-convertible/

struct Set<T: Hashable> {
    typealias Index = T
    private var dictionary: [T: Bool]

    init() {
        self.dictionary = [T: Bool]()
    }

    var count: Int {
        return self.dictionary.count
    }

    var isEmpty: Bool {
        return self.dictionary.isEmpty
    }

    func contains(element: T) -> Bool {
        return self.dictionary[element] ?? false // 这里
    }

    mutating func put(element: T) {
        self.dictionary[element] = true
    }

    mutating func remove(element: T) -> Bool {
        if self.contains(element) {
            self.dictionary.removeValueForKey(element)
            return true
        } else {
            return false
        }
    }
}

因为字典通过[‘key‘]获取后是一个Optional类型,如果这个key对应的value不存在的话,可以通过??运算符设置一个不存在时的默认值(false)。

nil coalescing operator

标签:blog   http   io   ar   for   2014   on   cti   log   

原文地址:http://blog.csdn.net/tounaobun/article/details/40182133

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!