OOPS concepts Overview

Let us understand OOPS Concepts and its importance in this article There are many popular programming languages like Java,c++,c# etc follow an Object Oriented Programming paradigm. Object Oriented Programming system(OOPS) is designed based on the concept of “Object”. “Object” contains both variables (used for holding the data) and methods(used for defining the behaviors) OOPS concept […]

Share this article on

Encapsulation

Encapsulation Process of binding object state(fields) and behaviors(methods) together in a single entity called “Class”. Encapsulation wraps both fields and methods in a class, It will be secured from the outside access. We can restrict the access to the members of a class using access modifiers along with encapsulation. When we create a class in […]

Share this article on