vote up 14 vote down star
5

How do these 2 classes differ?

class A():
    x=3

class B():
    def __init__(self):
        self.x=3

Is there any significant difference?

flag

Duplicate. stackoverflow.com/questions/68282/… – S.Lott Jan 24 at 11:53
no, it is not a duplicate. – hop Jan 24 at 15:43
1  
@S.Lott - Huh? The other question is asking why we need to explicitly pass self. This one is asking about the difference because class and instance variables. – Dana Jan 25 at 0:24
1  
@S.Lott That isn't the same question. I even looked at that one before asking it. – ryeguy Jan 25 at 5:25
1  
@S.Lott: 68282 is a useless question about why you have to explicitly put self as the first argument to methods; this question asks about the difference between class and instance members. S.Lott, I really like your contributions to SO, but this time you are wrong. – hop Jan 25 at 19:59
show 1 more comment

5 Answers

vote up 29 vote down check

A.x is a class variable. B's self.x is a instance variable.

i.e. A's x is shared between instances.

It would be easier to demonstrate the difference with something that can be modified like a list:

#!/usr/bin/env python

class A:
    x = []

    def add(self):
        self.x.append(1)


class B:
    def __init__(self):
        self.x = []

    def add(self):
        self.x.append(1)


x = A()
y = A()
x.add()
y.add()
print "A's x:",x.x

x = B()
y = B()
x.add()
y.add()
print "B's x:",x.x

Output

A's x: [1, 1]
B's x: [1]

link|flag
Maybe also post the output of your script, then one can see the difference without copying and running it oneself... – Martin Jan 24 at 11:25
I added the output. – Unkwntech Jan 24 at 11:34
Is python's self equivalent to Java's this then? Excuse the noobishness please – Jean Azzopardi Jan 24 at 11:57
@Unkwntech - thanks. – Douglas Leeder Jan 24 at 12:08
@Jean - Yes-ish - self has to be just the conventional name given to the first parameter of instance methods - and python explicitly passes the current instance of instance methods as the first argument to instance methods. But it does the same job as Java's this – Douglas Leeder Jan 24 at 12:10
show 4 more comments
vote up 5 vote down

A.x is a class variable, and will be shared across all instances of A, unless specifically overridden within an instance. B.x is an instance variable, and each instance of B has its own version of it.

I hope the following Python example can clarify:


    >>> class Foo():
    ...     i = 3
    ...     def bar(self):
    ...             print 'Foo.i is', Foo.i
    ...             print 'self.i is', self.i
    ... 
    >>> f = Foo() # Create an instance of the Foo class
    >>> f.bar()
    Foo.i is 3
    self.i is 3
    >>> Foo.i = 5 # Change the global value of Foo.i over all instances
    >>> f.bar()
    Foo.i is 5
    self.i is 5
    >>> f.i = 3 # Override this instance's definition of i
    >>> f.bar()
    Foo.i is 5
    self.i is 3
link|flag
vote up 3 vote down

Just as a side note: self is actually just a randomly chosen word, that everyone uses, but you could also use this, foo, or myself or anything else you want, it's just the first parameter of every non static method for a class. This means that the word self is not a language construct but just a name:

>>> class A:
...     def __init__(s):
...        s.bla = 2
... 
>>> 
>>> a = A()
>>> a.bla
2
link|flag
vote up -2 vote down

There have been lately some interesting posts regarding the use of self between Bruce Eckel and GvR. Check it out: this vs. this

link|flag
vote up -7 vote down

If you are implementing a reflective design pattern, you use self to hold the place of explicitly calling the class name so that you can have very portable object code.

link|flag

Your Answer

Get an OpenID
or

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