展开命名约定

时间:2015-11-19 09:06:08

标签: swift swift2 naming-conventions convention unwrap

我想知道是否有一个命名约定来解包可选值。

var x: Int? = 0

if let x = x {
}
// OR ?
if let _x = x {
}

很多博客文章都在使用第一个案例。

但如果我引用了WWDC 2014 session 402 (Introduction to Swift) Apple正在使用:

if let legCount = possibleLegCount {
    println("An aardvark has \(legCount) legs")
}

此时是否有官方公约?

0 个答案:

没有答案