Prac-Theory Flashcards
Define static
indicates that a particular member is not an instance, but rather part of a type
Define parallel arrays
More than one array with the same number of elements where the elements of all the arrays with the same index, are related.
What is an access modifier
Defines who can use a method or variable in a class.
private: Only the same class can use it.
public: Anyone can use it.
Accessor
A method that lets you read the value of a private variable.
Attribute
The data or properties that belong to an object (also called fields or properties).
Class
A template used to create objects. It defines the data (attributes) and actions (methods) the object will have.
Constructor
A special method that creates an object and sets its starting values. It has the same name as the class.
Encapsulation
Keeping data (fields) and related actions (methods) together in one class, and hiding the details from other parts of the program.
Helper Method
A private method used inside a class to do small tasks like calculations. It’s not meant to be used outside the class.
Information Hiding
Keeping an object’s data private and only allowing access through specific methods like get and set.
Inheritance
When a class (child) gets methods and attributes from another class (parent), so you can reuse code.
Instantiation
The process of creating an object from a class
Methods
Actions or behaviors that objects can perform. For example, an object might have a method to calculate something or display a value.
Mutator
A method (like a set method) that changes the value of a private variable.
Non-Static Method
A method that can only be used when you have created an object of the class.
Object
An instance of a class that you create to represent something in your program, with its own data and behaviors.
OOP Design
A way of designing software by breaking it into objects that interact to solve problems.
Overloading
Having multiple methods with the same name in a class, but with different input parameters (types or number).
Overriding
When a child class provides a new version of a method from its parent class. The child’s version is used instead.
Parameters
Data or variables that you pass to a method so it can use them
Polymorphism
The ability to use the same method name in different ways, like with overloading or overriding.
Properties
The characteristics or data of an object (same as attributes or fields).
Static Method
A method you can use without creating an object of the class.
toString Method
A method that returns a text description of an object.
Typed Method
A method that gives back a value (like a number or string). For example, get methods are typed methods.
Void Method
A method that does something but doesn’t return a value, like a set method.