Front | Back |
Constructor
|
First thing to run when class is instantiated. Used to initalize private fields in an object, does not have a return value,
|
Properties
|
Methods that run each time a field is called to set or return (get) the value of that field. The field containing that value is called the "backing field"
|
Encapsulation
|
Keeping some data in a class private
|
Class
|
What is used to build an object. A "blue print of an object".
|
Method
|
Defines the "behavior" of a class or what that class does
|
Parameter
|
Used to pass information to a method
|
Static
|
When used in a class declaration, makes instantiation of that class not possible.
|
Void
|
Method does not return anything
|
New
|
Statement used to create an object
|