How do these 2 classes differ?
class A():
x=3
class B():
def __init__(self):
self.x=3
Is there any significant difference?
|
|
i.e. It would be easier to demonstrate the difference with something that can be modified like a list:
Output
|
|||||||||||||||||
|
|
Just as a side note:
|
|||
|
|
|
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:
|
||||
|
|
|
I used to explain it with this example
The output then will by machine1.id 1 machine2.id 2 machine3.id 3 machine1.counter 3 machine2.counter 3 machine3.counter 3 |
|||
|
|
|
There have been lately some interesting posts regarding the use of |
||||
|
|