Q:

C++ program to demonstrate example of Parameterized Constructor

0

C++ program to demonstrate example of Parameterized Constructor

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Parameterized Constructor program in C++

 

/*C++ program to demonstrate example of Parameterized Constructor.*/
#include <iostream>
using namespace std;
 
//Class declaration.
class Demo
{
    //Private block  to declare data member( X,Y ) of integer type.
    private:
        int X;
        int Y;
 
    //Public block of member function to access data members.
    public:
        //Declaration of perameterized constructor to initailize data members.
            Demo (int a, int b); 
        //To take input from user.
        void    Input(); 
        //To display output onn screen.
        void    Display();
     
};//End of class
 
//Definition of constructor.
Demo:: Demo(int a, int b)
{
    X = a;
    Y = b;
}
 
//Definition of Input() member function.
void Demo:: Input()
{
    cout << "Enter Value of X: "; cin >> X;
    cout << "Enter Value of Y: "; cin >> Y;
}
 
 
//Definition of Display() member function.
void Demo:: Display()
{
    cout << endl << "X: " << X;
    cout << endl << "Y: " << Y << endl;
}
 
int main()
{
    Demo d(10,20) ; //Ctor autometically call when object is created.
 
    //Display value of data member.
    cout << endl <<"Method 1: " << endl;  
    cout << "Value after initialization: " ;
    d.Display();    
 
    d.Input();
    cout << "Value after User Input : ";
    d.Display();
 
 
    //We can also create object like this
    Demo d1 = Demo(10,20);
     
    //Display value of data member.
    cout << endl << "Method 2: " << endl;
    cout << "Value after initialization: ";
    d1.Display();   
         
    return 0;
}

Output

    Method 1: 
    Value after initialization: 
    X: 10
    Y: 20
    Enter Value of X: 25
    Enter Value of Y: 30
    Value after User Input : 
    X: 25
    Y: 30

    Method 2: 
    Value after initialization: 
    X: 10
    Y: 20

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ program to demonstrate example of Copy Constru... >>
<< C++ program to demonstrate example of Default Cons...