Risk Unlimited

Whats life without risk……..

OOPS continued….

Published by admin under Technical on July 9, 2008

We have just seen introduction to the OOPS concepts. We have to see the concepts in detail. Lets first take the Encapsulation concept.

Encapsulation is the process of binding the data members and member functions. Classes are the basic encapsulation process module. In classes we declare the data members that are going to be used inside the program. We also declare the member functions in the class. This will bind the data members to those member functions. The member functions can be defined outside the class. But the data members inside the class alone can be passed to the functions. This will prevent the usage of data by other functions outside the class.

Add A Comment