我想知道是否有一个命名约定来解包可选值。
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")
}
此时是否有官方公约?