Term
|
Definition
| This is an encapsulation of data and procedures that act on that data. |
|
|
Term
|
Definition
| This prevents inadvertent data modification. |
|
|
Term
| Member or instance variables |
|
Definition
| Variables contained in classes that are declared with a statement of the form. |
|
|
Term
|
Definition
| Items declared with this keyword (instead of Dim) cannot be accessed from outside the class. |
|
|
Term
|
Definition
| Items declared with this keyword are accessible from both inside and outside the class. |
|
|
Term
|
Definition
| Each class has a special method that is always invoked when the object is instantiated. This may take arguments. It is used to perform tasks to initialize the object. |
|
|