tag

home / developersection / tag

Prototypal Inheritance vs. Class-Based Inheritance in JavaScript
javascript 26-Jun-2024
Prototypal Inheritance vs. Class-Based Inheritance in JavaScript

Objects in JavaScript inherit properties through the prototype chain, enabling dynamic object behavior and composition.

Interface in oops
c# 14-Nov-2018
Interface in oops

The Interfaces in C# are provided as a replacement of multiple inheritances.

INTRODUCTION TO OOPS
oops 19-Jun-2018
INTRODUCTION TO OOPS

OOP is basically a programming style that involves the concept of objects and class.We can also say that OOP is an approach to a problem involving objects.

Basics of Inheritance
c# 19-Jun-2018
Basics of Inheritance

Inheritance is a process in which properties of parent class are inherited by the child class.

Objective C - Inheritance
iphone 07-Jul-2015
Objective C - Inheritance

One of the most important concepts in object-oriented programming is that of inheritance. Inheritance allows us to define a class in terms of another class which makes it easier to create and maintain an application.