-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstructorTutorial.cpp
49 lines (35 loc) · 1.1 KB
/
ConstructorTutorial.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <iostream>
using namespace std;
class Complex{
int a, b; // This will be by default in private: access specifier.
public:
// Creating a Constructor
/*
Constructor is a special member function
with the same name as of the class.
It is used to intialize the objects of it's class.
It is automatically invoked whenever an object is created.
*/
Complex(void); // Constructor Declaration
void printNumber(){
cout << "Your number is " << a << " + " << b << "i" << endl;
}
};
Complex :: Complex(void){ // ------> This is a Default Constructor as tit takes NO parameters.
a = 10;
b = 0;
}
int main() {
cout << "HI" << endl;
Complex c;
c.printNumber();
return 0;
}
// Characteristics of Constructors
/*
1. It should be declared in the public section of the class.
2. They are automatically invoked whenever the object is created.
3. They cannot return values and do not have return types.
4. It can have default arguments.
5. We cannot refer to their address.
*/