Object-oriented programming: Difference between revisions

Content deleted Content added
Line 162:
Here are a few key terms in class-based OOP:
 
* [[Class variable]]s – belong to the ''class itself'', so all objects in the class chareshare one copy.
* [[Instance variable]]s – belong to individual ''objects''; every object has its own version of these variables.
* [[Member variable]]s – refers to both the class and instance variables that are defined by a particular class.