In this unit, we will delve into two fundamental concepts of Object Oriented Programming (OOP): Inheritance and Encapsulation. These concepts are crucial for structuring and organizing code in an efficient and secure manner.
Inheritance is a mechanism that allows one class to acquire the properties (attributes and methods) of another. With the use of inheritance, information is made manageable in a hierarchical order.
The class which inherits the properties of another class is known as the subclass or child class, and the class whose properties are inherited is known as the superclass or parent class.
Inheritance supports the concept of reusability, i.e., we can add additional features to an existing class without modifying it. This is possible by deriving a new class from the existing one.
There are several types of inheritance, namely:
Encapsulation is defined as the wrapping up of data under a single unit. It is the mechanism that binds together code and the data it manipulates. In a different way, encapsulation is a protective shield that prevents the data from being accessed by the code outside this shield.
Technically in encapsulation, the variables or data of a class are hidden from any other class and can be accessed only through any member function of their class in which they are declared.
Encapsulation can be achieved by: Declaring all the variables in the class as private and writing public methods in the class to set and get the values of variables.
By understanding and implementing inheritance and encapsulation, you can create more secure and organized code, improving the efficiency and functionality of your programming projects.