vote up 8 vote down star

Python is the language I know the most, and strangely I still don't know why I'm typing "self" and not "this" like in Java or PHP.

I know that Python is older than Java, but I can't figure out where does this come from. Especially since you can use any name instead of "self" : the program will work fine.

So where does this convention come from ?

flag
1  
You can use "this" instead of "self" as much as you want. However, that might confuse some syntax highlighters and code inspection tools. Using "self" is just a convention. – balpha Jul 3 at 16:12
"self" and "this" both has four letters, so no one seems to be better than the other. – Jonathan Jul 3 at 16:14
I just wrote it's a convention. – e-satis Jul 3 at 16:25
1  
Where did "this" come from? – FogleBird Jul 3 at 20:21
3  
So that when they abuse "self", it's self-abuse. – quant_dev Jul 3 at 23:49
show 2 more comments

5 Answers

vote up 27 vote down check

Smalltalk-80, released by Xerox in 1980, used self (1980). Objective-C (early 1980s) layers Smalltalk features over C, so it uses self too. Modula-3 (1988) and Python (late 1980s) follow this tradition.

C++, also dating from the early 1980s, chose this instead of self. Since Java was designed to be familiar to C/C++ developers, it uses this too.

link|flag
5  
Object Pascal (both the early Apple and the later Borland flavours, including Delphi) also went with "self". – Paul-Jan Jul 3 at 17:44
5  
Smalltalk and Objective-C both use the metaphor of objects sending messages to each other, so "self" just indicates that the object is sending a message to itself. (It's always seemed more natural to me to use "self" instead of "this".) – Jim Ferrans Jul 3 at 23:49
Not to forget self, the language :) – Adrian Aug 26 at 13:41
vote up 13 vote down

Smalltalk, which predates Java of course.

link|flag
Thanks pale, will sleep better tonight. – e-satis Jul 3 at 16:24
vote up 13 vote down

Check the history of Python for user defined classes:

Instead, one simply defines a function whose first argument corresponds to the instance, which by convention is named "self." For example:

def spam(self,y):
    print self.x, y

This approach resembles something I had seen in Modula-3, which had already provided me with the syntax for import and exception handling.

It's a choice as good as any other. You might ask why C++, Java, and C# chose "this" just as easily.

link|flag
1  
Sorry mate, but really you are just repeating what I said in the question : python uses self, it's a convention. The question is why. – e-satis Jul 3 at 16:21
2  
The quotes and link explain the creator of Python's motivation. It would be difficult to get a better 'why' than that. Duffymo isn't repeating your question - Guido is. – Joel Hooks Jul 3 at 16:26
3  
"...something I had seen in Modula-3..." - it's got more documentation than "Smalltalk because I said so." I believe the "I" in the history is BDFL Guido. – duffymo Jul 3 at 16:26
Didn't follow the link. My mistake. – e-satis Jul 3 at 17:52
vote up 2 vote down

I think that since it's explicity declared it makes more sense seeing an actual argument called "self" rather than "this". From the grammatical point of view at last, "self" is not as context dependant as "this".

I don't know if I made myself clear enough, but anyway this is just a subjective appreciation.

link|flag
vote up 3 vote down

The primary inspiration was Modula-3, which Guido was introduced to at DEC:

the Modula-3 final report was being written there at about the same time. What I learned there showed up in Python's exception handling, modules, and the fact that methods explicitly contain “self” in their parameter list.

-- Guido, Linux Journal Interviews Guido van Rossum

link|flag

Your Answer

Get an OpenID
or

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