我觉得吧,这里他的 let,只是因为变量名是 emptyArray,按照字面意思,emptyArray 肯定是个常数啦……所以这里用了 let……
其实这个,自己试试或者深入看看也就知道啦……你看比如后面……
“Creating and Initializing an Array
You can create an empty array of a certain type (without setting any initial values) using initializer syntax:
var someInts = Int[]()
println("someInts is of type Int[] with \(someInts.count) items.")
// prints "someInts is of type Int[] with 0 items.”
Excerpt From: Apple Inc. “The Swift Programming Language.” iBooks.
https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewBook?id=881256329