-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial6.cpp
56 lines (49 loc) · 1.12 KB
/
tutorial6.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
50
51
52
53
54
55
56
#include<bits/stdc++.h>
using namespace std;
// We can overload the constructor also like normal functions
/* If we are overloading the construtors then we also need to define the default constructor with no parameter */
class Human
{
string name;
int age;
public:
Human()
{
cout<<"This is the default constructor."<<endl;
name = "noname";
age = 0;
}
Human(string inp_name)
{
cout<<"This is the constructor with given input name."<<endl;
name = inp_name;
age = 0;
}
Human(int inp_age)
{
cout<<"This is the constructor with given input age."<<endl;
name = "nonale";
age = inp_age;
}
Human(string inp_name, int inp_age)
{
cout<<"This is the constructor with given input name and input age."<<endl;
name = inp_name;
age = inp_age;
}
void Introduce()
{
cout<<"Hello! I am "<< name<<" with age "<<age<<"."<<endl;
}
};
int main()
{
Human ravi;
ravi.Introduce();
Human nishant("Nishant");
nishant.Introduce();
Human saurav(22);
saurav.Introduce();
Human javed("Javed", 23);
javed.Introduce();
}