How do these 2 classes differ?
class A():
x=3
class B():
def __init__(self):
self.x=3
Is there any significant difference?
|
5
|
How do these 2 classes differ?
Is there any significant difference?
|
||||||||||||||||
|
|
|
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:
Output
|
||||||||||
|
|
|
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:
|
|||
|
|
|
|
Just as a side note:
|
||
|
|
|
|
There have been lately some interesting posts regarding the use of |
|||
|
|
|
|
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. |
||
|
|