I am new to Swift and I'm wondering what self
is used for and why.
I have seen it in classes and structures but I really don't find them essential nor necessary to even mention them in my code. What are they used for and why? In what situations it's necessary to use it?
I have been reading lots of questions and answers for this question but none of them fully answers my questions and they always tend to compare it with this
as in Java, with which I'm not familiar whatsoever.
Yes it is the same as this
in Java and self
in Objective-C, but with Swift, self
is only required when you call a property or method from a closure or to differentiate property names inside your code, such as initializers. So you can use almost all of your class components safely without using self
unless you are making the call from a closure.
“The self Property Every instance of a type has an implicit property called
self
, which is exactly equivalent to the instance itself. You use theself
property to refer to the current instance within its own instance methods.The
increment()
method in the example above could have been written like this:func increment() { self.count += 1 }
In practice, you don’t need to write
self
in your code very often. If you don’t explicitly writeself
, Swift assumes that you are referring to a property or method of the current instance whenever you use a known property or method name within a method. This assumption is demonstrated by the use ofcount
(rather thanself.count
) inside the three instance methods for Counter.The main exception to this rule occurs when a parameter name for an instance method has the same name as a property of that instance. In this situation, the parameter name takes precedence, and it becomes necessary to refer to the property in a more qualified way. You use the
self
property to distinguish between the parameter name and the property name.Here,
self
disambiguates between a method parameter calledx
and an instance property that is also calledx
:”
Excerpt From: Apple Inc. “The Swift Programming Language (Swift 2 Prerelease).”
This is how Ray Wenderlich recommends the use of self
in Swift for their tutorials:
For conciseness, avoid using self
since Swift does not require it to access an object's properties or invoke its methods.
Use self
when required to differentiate between property names and arguments in initializers, and when referencing properties in closure expressions as required by the compiler:
class BoardLocation {
let row: Int, column: Int
init(row: Int, column: Int) {
self.row = row
self.column = column
let closure = {
println(self.row)
}
}
}
And this is GitHub's recommendations on self
for their applications:
Only explicitly refer to
self
when required
When accessing properties or methods on self
, leave the reference to self
implicit by default:
private class History {
var events: [Event]
func rewrite() {
events = []
}
}
Only include the explicit keyword when required by the language — for example, in a closure, or when parameter names conflict:
extension History {
init(events: [Event]) {
self.events = events
}
var whenVictorious: () -> () {
return {
self.rewrite()
}
}
}
Rationale: This makes the capturing semantics of self stand out more in closures, and avoids verbosity elsewhere.