Now A Days Everyone Who knows Programming languages or Related to Computer Science familiar to the Object Oriented Programming(OOP) concept but most of us don't understand the real meaning of Object Oriented Programming(OOP).
Image Source :- mazer.dev
In general We can say that Object Orientation is an idea that is supported many languages. The Object Oriented Programming term is used to describe a programming approach based on Classes and Objects. For Example - If the Fruit is A class Then Mango will be the Object.
Some OOPs Supported languages are:
C++, Java , Python etc.
Now let us Understand,
Classes-
As we know that If we are going to construct a Building we need a blueprint For that.......So we can say classes are the Blueprint or Definition or Description. It does not take any memory. We can make many classes in a program.
A classes Define two things Attributes and behavior if We talk about a person then we can Differentiate it into two things....
Attributes Behavior
Name Walk
Height Run
Weight Jump
Gender Speak
Age Sleep
Attributes Are characteristics of the Class and Behavior Are the methods means What can we do.
Objects-
The object is created from the Classes like Creating A house With the Blueprint of the House.
We can create many objects based on One Class Like we can Create many Houses with the help of One Blueprint. Object is an instance of a class. Objects takes place in memory. object contains Data and Methods(Code to Manipulate The data ).
We will Talk About Basic Concept Of OOPs in The next Blog.
Do not forget to Give Your Suggestions.
Some OOPs Supported languages are:
C++, Java , Python etc.
Now let us Understand,
Classes-
As we know that If we are going to construct a Building we need a blueprint For that.......So we can say classes are the Blueprint or Definition or Description. It does not take any memory. We can make many classes in a program.
A classes Define two things Attributes and behavior if We talk about a person then we can Differentiate it into two things....
Attributes Behavior
Name Walk
Height Run
Weight Jump
Gender Speak
Age Sleep
Attributes Are characteristics of the Class and Behavior Are the methods means What can we do.
Objects-
The object is created from the Classes like Creating A house With the Blueprint of the House.
We can create many objects based on One Class Like we can Create many Houses with the help of One Blueprint. Object is an instance of a class. Objects takes place in memory. object contains Data and Methods(Code to Manipulate The data ).
We will Talk About Basic Concept Of OOPs in The next Blog.
Do not forget to Give Your Suggestions.

