Basic terms
Class |
Data type acting like blueprint for individual objects, attributes, and methods. And rules for interacting with this entity |
Objects |
Instances of class created with specifically defined data. Object has a state (fields) and behavior (methods). |
Methods |
Functions describing behaviors of object. |
Attributes |
Defined in class template and represent state of object. Object fields. |
Comments
Related