What is Object Oriented Programming | Razsoft Education
Object Oriented Programming :
Object Oriented Programming (OOP’s) is a modern programming approach in which program is thinks as of set of objects communicates to each other to get a work done. Like in real life we have multiple objects that depend on each other for get a work done.
So, the idea was to design a data that has data and function that perform operation on that data. In C++ classes are the special data type that contains data called data member and function that perform operation on that data called member function. An object is instance of class.
Also Read about :
Comments
Post a Comment