Today we will discuss 4 pillars of OOP (Object Oriented Programming). Abstraction Encapsulation Inheritance Polymorphism Abstraction Abstraction is a process of hiding implementation details and exposes only the functionality to the user. This means the user will only know what…
Tag: OOP
Basic concept of OOP, Class and Object
What is Object Oriented Programming? Object oriented programming (adorably we call it OOP) is all about breaking down large codebase into individual pieces and establishing a relationship between them. In java, those individual pieces are called objects. So, in other…