Another deprecation, but again with good reason: var
parameters are deprecated because they offer only marginal usefulness, and are frequently confused with inout
.
To give you an example, here is the printGreeting()
function modified to use var
:
func printGreeting(var name: String, repeat repeatCount: Int) {
name = name.uppercaseString
for _ in 0 ..< repeatCount {
print(name)
}
}
printGreeting("Taylor", repeat: 5)
The differences there are in the first two lines: name
is now var name
, and name
gets converted to uppercase so that "TAYLOR" is printed out five times.
Without the var
keyword, name
would have been a constant and so the uppercaseString
line would have failed.
The difference between var
and inout
is subtle: using var
lets you modify a parameter inside the function, whereas inout
causes your changes to persist even after the function ends.
As of Swift 2.2, var
is deprecated, and it's slated for removal in Swift 3.0. If this is something you were using, just create a variable copy of the parameter inside the method, like this:
func printGreeting(name: String, repeat repeatCount: Int) {
let upperName = name.uppercaseString
for _ in 0 ..< repeatCount {
print(upperName)
}
}
printGreeting("Taylor", repeat: 5)
SPONSORED Alex is the iOS & Mac developer’s ultimate AI assistant. It integrates with Xcode, offering a best-in-class Swift coding agent. Generate modern SwiftUI from images. Fast-apply suggestions from Claude 3.5 Sonnet, o3-mini, and DeepSeek R1. Autofix Swift 6 errors and warnings. And so much more. Start your 7-day free trial today!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Download all Swift 2.2 changes as a playground Link to Swift 2.2 changes
Link copied to your pasteboard.