oop programming Flashcards
what is a Class
A blueprint or template for creating objects.
Object
An actual instance of a class. When you use the blueprint (class), you get a real thing (object).
Constructor
A special function that automatically runs when an object is created. It sets initial values.
Encapsulation
Wrapping data (variables) and methods (functions) into a single unit (class), and restricting access.
Use private to hide data and public to expose only what’s necessary.
- Inheritance
One class inherits properties and behavior (methods) from another.
- Polymorphism
Same function name, different behavior — depending on context.
- Abstraction
Hiding complex details and showing only essentials. Achieved using abstract classes or interfaces (in other languages).
- Access Specifiers
public: Accessible from anywhere.
private: Only accessible inside the class.
protected: Like private, but accessible in derived classes.
Class Blueprint Cookie mold
Object Instance of class Actual cookie
Constructor Sets initial values Setup instructions
Encapsulation Hides internal data Remote control buttons only
Inheritance One class inherits another Child inherits traits from parent
Polymorphism One name, many forms Same remote, different devices
Abstraction Hide details, show essentials Car pedals, not engine internals
Access Specifier Controls visibility Public/private signs