In various Scala literature I see some self-type annotations using "this" and others using "self":

trait A { this: B => ... }
trait A { self: B => ... }

Is there any real difference between using "this" or "self"? Does it matter at all what name you use? Is this just as valid?

trait A { foo: B => ... }
link|improve this question

25% accept rate
feedback

3 Answers

up vote 22 down vote accepted

All three forms are valid, and have the effect that B is assumed as the type of this in class A. The variants

trait A { self: B => ... }
trait A { foo: B => ... }

introduce self (respectively, foo) as an alias for this in trait A. This is useful for accessing the this reference from an inner class. I.e. you could then use self instead of A.this when accessing the this reference of the trait A from a class nested within it. The third variant,

trait A { this: B => ... }

does not introduce an alias for this; it just sets the self type.

link|improve this answer
feedback

There is a difference in that this always refers to the object defined by the innermost template.

The expression this can appear in the statement part of a template or compound type. It stands for the object being defined by the innermost template or compound type enclosing the reference. If this is a compound type, the type of this is that compound type. If it is a template of a class or object definition with simple name C, the type of this is the same as the type of C.this. (Scala Ref. §6.5)

So, if you call your self-type foo, you could still refer to it as this (unless, of course, you are in an inner template in which case this will refer to the object defined by it – and unless you don’t give the inner template’s self-type the same name) but obviously not the other way round.

link|improve this answer
feedback

There is no difference and all of them mean the same.

link|improve this answer
Not true, see @odersky's answer – Pablo Fernandez Nov 7 '11 at 1:58
In the context of original question my answer is correct. – missingfaktor Nov 7 '11 at 13:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.