← Back

Object Oriented Programming Introduction

Model software using objects combining state and behavior.

oopbasicsUpdated 2025-09-01

Pillars

  • Encapsulation
  • Abstraction
  • Inheritance
  • Polymorphism

Example

  • class Car { int speed; void drive(){} }