Simple Example Program For Parameterized Constructor In C++
Definition
In C++, Constructor is automatically called when the object(an instance of the class) create.It is the special member function of the class.The constructor has arguments is called as a Parameterized Constructor.
- It has the same name of the class.
- It must be a public member.
- No Return Values.
- Default constructors are called when constructors are not defined for the classes.
If a Constructor has parameters, it is called a Parameterized Constructor. Parameterized Constructors helps in initializing values when an object is created.
for better understanding about Constructor,
Parameterized Constructor Syntax
class class_name {
Access Specifier :
Member - Variables
Member - Functions
public:
class_name(variables) {
// Constructor code
}
//... other Variables & Functions
}
Parameterized Constructor Example Program
/* Example Program For Simple Example Program Of Parameterized Constructor In C++
little drops @ thiyagaraaj.com
Coded By:THIYAGARAAJ MP */
#include<iostream>
#include<conio.h>
using namespace std;
class Example {
// Variable Declaration
int a, b;
public:
//Constructor
Example(int x, int y) {
// Assign Values In Constructor
a = x;
b = y;
cout << "Im Constructor\n";
}
void Display() {
cout << "Values :" << a << "\t" << b;
}
};
int main() {
Example Object(10, 20);
// Constructor invoked.
Object.Display();
// Wait For Output Screen
getch();
return 0;
}
Sample Output
Im Constructor
Values :10 20
C++ Constructor Example Programs
- Simple Example Program For Constructor In C++
- Define Constructor in Outside Class Example Program In C++
- Simple Example Program For Parameterized Constructor In C++
- Simple Parameterized Constructor For Find Prime Number Example Program In C++
- Simple Example Program For Constructor Overloading In C++
- Simple Example Program For Copy Constructor In C++
- Simple Copy Constructor Example Program For Find Factorial In C++
- Simple Example Program For Destructor In C++
- Simple Destructor Scope Measurement Example Program In C++
Read More Articles
- Simple Merge Sort Program in C++
- Scope Resolution Operator In C++
- Simple Program for Virtual Functions Using C++ Programming
- Simple Class Example Program For Find Prime Number In C++
- Simple Example Program For Parameterized Constructor In C++
- Define Constructor in Outside Class Example Program In C++
- Simple Program for Function Overloading Using C++ Programming
- Simple Example Program For Copy Constructor In C++
- Simple Program for Single Inheritance Using C++ Programming
- Simple Program for Inline Function without Class Using C++ Programming
- Factorial Using Function Example Program In C++
- Simple Addition ( Add Two Integers ) Example Program
- Simple Example Program For Constructor Overloading In C++
- Simple Example Program for Inline Function Using C++ Programming
- Simple Example Program For Constructor In C++
- Simple Program for Read user Input Using cin
- Factorial Using Loop Example Program In C++
- Simple Stack Program in C++ Programming
- Simple Program for Friend Function Using C++ Programming
- Simple Program for Static Data and Member Function Using C++ Programming
- Simple Program for Unary Operator Overloading Using C++ Programming
- Do While Loop Example Program In C++
- Simple Program for Multiple Inheritance Using C++ Programming
- Simple Copy Constructor Example Program For Find Factorial In C++
- Simple Program for Exception Handling Divide by zero Using C++ Programming