Now, it should be clear what the difference between instance and class
variables is. Class variables only have one copy that is shared by all
the different objects of a class, whereas every object has it’s own
personal copy of an instance variable. So, instance variables across
different objects can have different values whereas class variables
across different objects can have only one value.
No comments:
Post a Comment