What is OOP?
Object-oriented programming (OOP) is a programming paradigm that is based on the concept of object.
- Which can centain data (in the form of
property) and code (in the form ofmethod). - OOP is popular programming paradigm because it allows for modular, reusable code that can be easier to read, maintain and scale.
- There are two types of OOP Languages:
- Class-based languages like JAVA,C++,etc.
- Prototype-based languages like Javascript.
Features OOP?
There are four rules or main pillars of Object-oriented programming language.
This define how the dataand actionsassociated with the data are organized using code.
-OOPs Concepts:
- Object
- Classes
- `Inheritance`
- `Polymorphism`
- `Encapsulation`
- `Abstraction`
Inheritance
Inheritanceis a concept where a one class (child class) inheritsproperties and methods from another class(parrent class). In javascript , Inheritance is achievedthrough the use of the extends keyword.
// Parent class
class Animal {
constructor(name, age) {
this.name = name;
this.age = age;
}
eat() {
console.log(`${this.name} is eating.`);
}
}
// Child class
class Dog extends Animal {
constructor(name, age, breed) {
super(name, age);
this.breed = breed;
}
bark() {
console.log(`${this.name} is barking`);
}
}
// USAGE
const myDog = new Dog("Dogi", 5, "Labrador");
myDog.eat(); //"Dogi is eating"
myDog.bark(); //"Dogi is barking"
Polymorphism
Pholymorphism is the ability of objects to use the same function in different forms.
- This
reduces repetitionand make the code snippet useful in many different cases. - In javascript, Polymorphism is achieved throug
method overriding or method overloading. -
Method overridingis where a subclass provicdes itsown implementationof method that is already defined in theparent class. -
Method overloadingis where a class hasmultiple methodswith the same name butdifferent parameters.
class Shape {
constructor(color) {
this.color = color;
}
draw() {
console.log("Drawing a shape.");
}
}
// Child classes
class Circle extends Shape {
draw() {
console.log(`Drawing a ${this.color} circle.`);
}
}
class Rectangle extends Shape {
draw() {
console.log(`Drawing a ${this.color} rectangle.`);
}
}
// USAGE
const myCircle = new Circle("red");
const myRectangle = new Rectangle("blue");
myCircle.draw(); //Output: "Drawing a red Circle."
myRectangle.draw(); // Output: "Drawing a blue rectangle"
const myShape = new Shape();
myShape.draw(); //Output :"Drawing a shape"
Here both override the draw() method of parent class, but provide their own implementation of it.
Encapsulation
Encapsulation is the practice of hiding the internal details of an object from the outside world.
class Wallet {
#balance = 0; //private field
constructor(initialBalance) {
this.#balance = initialBalance;
}
getBalace() {
return this.#balance;
}
}
const myWallet = new Wallet(200);
console.log(myWallet.getBalace()); // Output :200
- By encapsulating the
#balancefield withihn theWallet class, we arepreventing didrect accessto the #balance field fromoutsideof the class. - This is an example of how encapsulation can help to
prevent unwanted modificationsin areal-world scenariosuch as managing awallet.
Abstraction
Abstraction is the process of hiding the implementation detail while showingonly the necessary information to the user.
class Payment {
constructor(amount) {
this.amount = amount;
}
pay() {
throw new Error("pay() method must be implemented");
}
}
class StripePayment extends Payment {
constructor(amount, cardNumber) {
super(amount);
}
pay() {
console.log(`Paying $${this.amount} via Stripe`);
}
}
class PaypalPayment extends Payment {
constructor(amount) {
super(amount);
}
pay() {
console.log(`Paying $${this.amount} via paypal`);
}
}
const payment1 = new StripePayment(100);
payment1.pay();
const payment2 = new PaypalPayment(100);
payment2.pay();
- In this example, the
Payment classis theabstract classthat defines the interface for making payments. - It has a
pay methodthat isabstractand must be implemented by itssubclasses. - The
StripePaymentandPaypalPaymentclasses areconcrete classesthat implement thepay methodfor their respective payment gateways. - Example if the
child classes dont have pay(), will bethrow error.throw new Error("pay() method must be implemented");
source : instagram.com/p/CqRvH0ZPC7A/ - @webdesignuniversity
Top comments (0)