This Pointer Example in C++


This program defines a Rectangle class with private data members length and breadth, and a public member function area() that calculates and returns the area of the rectangle. In the constructor of the class, default values of length and breadth are set to 0. The constructor takes arguments for length and breadth and initializes the corresponding data members using this pointer.

In the main() function, an object r of the Rectangle class is created with length = 10 and breadth = 5. The area() function of the object r is called to calculate and display the area of the rectangle.

Source Code

#include<iostream>
using namespace std;
class Rectangle
{
private :
    int length;
    int breadth;
public :
    Rectangle(int length=0,int breadth=0)
    {
        this->length=length;
        this->breadth=breadth ;
    }
    int area() 
    {
        return length*breadth;
    }
};
int main()
{
    Rectangle r(10,5);
    cout<<"Area : "<<r.area();
    return 0;
}
To download raw file Click Here

Output

Area : 50

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples