unit2ObjectOrientedPrograming.pdf
Document Details
Uploaded by VirtuousOstrich
Medi-Caps University
Tags
Full Transcript
Abstract Data Types An abstract data type (or ADT) is a class that has a defined set of operations and values. Objects and Classes C++ Class A class is a blueprint for the object. We can think of a class as a sketch (prototype) of a house. It contains all the details about the floors, doors, w...
Abstract Data Types An abstract data type (or ADT) is a class that has a defined set of operations and values. Objects and Classes C++ Class A class is a blueprint for the object. We can think of a class as a sketch (prototype) of a house. It contains all the details about the floors, doors, windows, etc - we build the house based on these descriptions. C++ Objects When a class is defined, only the specification for the object is defined; no memory or storage is allocated. To use the data and access functions defined in the class, we need to create objects. Example: Object and Class in C++ Programming // Program to illustrate the working of // objects and class in C++ Programming #include using namespace std; // create a class class Room { public: double length; double breadth; double height; double calculate_area() { return length * breadth; } double calculate_volume() { return length * breadth * height; } }; int main() { // create object of Room class Room room1; // assign values to data members room1.length = 42.5; room1.breadth = 30.8; room1.height = 19.2; // calculate and display the area and volume of the room cout