在 Swift 3.0中,下面的代码为thisArray [0]提供了不同的地址,表明数组是深度复制的.实际情况如此,或者我在分析中遗漏了什么?如果让我们表现得一样吗?它可能无关紧要,因为它是不可变的
var thisArray: [String]? = ["One", "Two"] withUnsafePointer(to: &thisArray![0]) { print("thisArray[0] has address \($0)") } if var thisArray = thisArray { withUnsafePointer(to: &thisArray[0]) { print("thisArray[0] has address \($0)") } }相关: https://developer.apple.com/swift/blog/?id=10.
In Swift, Array, String, and Dictionary are all value types.
因此,如果您通过var或let分配现有值类型,则会发生复制.如果您通过var或let分配现有引用类型(例如类),那么您将分配引用.