Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   class members vs instance members (http://www.velocityreviews.com/forums/t359533-class-members-vs-instance-members.html)

hdixon 07-09-2006 03:35 PM

class members vs instance members
 
Ive spent a few days going thru a couple of Python tutorials. No
problem until I got to classes. I guess my java mindset is blocking my
vision. I've borrowed another thread's code snippet and cannot explain
the results:
class MyClass:
list = []
myvar = 10

def add(self, x):
self.list.append(x)
self.myvar = x

def printer(self):
print self.list
print self.myvar

a = MyClass()
b = MyClass()

for n in range(20):
a.add(n)

print "list in a:"
a.printer()
print "list in b:"
b.printer()

This produces:
list in a:
list in a:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
19
list in b:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
10

WHY do the "class members" list and myvar seem to behave differently?
Given the way that list[] is supposedly shared why doesnt myvar exhibit
the same behavior? It seems that myvar is acting like a true "instance
member". Is this simply because of the underlying types?


TIA


Sybren Stuvel 07-09-2006 03:42 PM

Re: class members vs instance members
 
hdixon enlightened us with:
> class MyClass:
> list = []
> myvar = 10
>
> def add(self, x):
> self.list.append(x)
> self.myvar = x


Here is your difference. In the add() function, self.myvar is assigned
a value. This means self.myvar is an instance variable. If you had
assigned MyClass.myvar = x, then it would have been as you expected.

Sybren
--
The problem with the world is stupidity. Not saying there should be a
capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself?
Frank Zappa

Bruno Desthuilliers 07-09-2006 03:54 PM

Re: class members vs instance members
 
hdixon a écrit :
> Ive spent a few days going thru a couple of Python tutorials. No
> problem until I got to classes. I guess my java mindset is blocking my
> vision.


Then http://dirtsimple.org/2004/12/python-is-not-java.html

> I've borrowed another thread's code snippet and cannot explain
> the results:
> class MyClass:


class MyClass(object):

> list = []


This may not be too harmful in the given context, nut shadowing builtin
types may not be a good idea.

> myvar = 10
>
> def add(self, x):
> self.list.append(x)


"list" is a class attribute. It's shared by all instances of MyClass.
This is a FAQ AFAICT.

> self.myvar = x


This creates an instance attribute named myvar that shadows the class
attribute of the same name

(snip expected results)

> WHY do the "class members" list and myvar seem to behave differently?


cf above. And notice that in Python, binding (aka 'assignement') and
name lookup on objects are different beasts. There have been quite a few
threads about this recently.

> Given the way that list[] is supposedly shared why doesnt myvar exhibit
> the same behavior?


Because binding to self.myvar creates the instance attribute "myvar".
Notice that you have not rebound "list".

> It seems that myvar is acting like a true "instance
> member".


It is one.

> Is this simply because of the underlying types?


Nope, it's because in the first case (MyClass.list, accessed as
self.list) you just call methods on the list object, which has no effect
on the binding.

hdixon 07-09-2006 06:56 PM

Re: class members vs instance members
 

Bruno Desthuilliers wrote:
> hdixon a écrit :
> > Ive spent a few days going thru a couple of Python tutorials. No
> > problem until I got to classes. I guess my java mindset is blocking my
> > vision.

>
> Then http://dirtsimple.org/2004/12/python-is-not-java.html
>
> > I've borrowed another thread's code snippet and cannot explain
> > the results:
> > class MyClass:

>
> class MyClass(object):
>
> > list = []

>
> This may not be too harmful in the given context, nut shadowing builtin
> types may not be a good idea.
>
> > myvar = 10
> >
> > def add(self, x):
> > self.list.append(x)

>
> "list" is a class attribute. It's shared by all instances of MyClass.
> This is a FAQ AFAICT.
>
> > self.myvar = x

>
> This creates an instance attribute named myvar that shadows the class
> attribute of the same name
>
> (snip expected results)
>
> > WHY do the "class members" list and myvar seem to behave differently?

>
> cf above. And notice that in Python, binding (aka 'assignement') and
> name lookup on objects are different beasts. There have been quite a few
> threads about this recently.
>
> > Given the way that list[] is supposedly shared why doesnt myvar exhibit
> > the same behavior?

>
> Because binding to self.myvar creates the instance attribute "myvar".
> Notice that you have not rebound "list".
>
> > It seems that myvar is acting like a true "instance
> > member".

>
> It is one.
>
> > Is this simply because of the underlying types?

>
> Nope, it's because in the first case (MyClass.list, accessed as
> self.list) you just call methods on the list object, which has no effect
> on the binding.


ok - i "think" its beginning to dawn on me. BTW - the blog above was a
good read for me. I _am_ trying to bring java into the mix and its
screwing me up big time. I'll go back over the chapters that dicuss
binding/name lookups.


Thanks



All times are GMT. The time now is 09:15 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57