-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdestructor.cpp
50 lines (32 loc) · 839 Bytes
/
destructor.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
//constructors example
#include<iostream>
using namespace std;
class human
{
public:
human() { //constructor
age=20;
name="Anish";
cout<<"Default Constructor is called"<<endl;
}
~ human() { //destructor
cout<<"Destructor is called as object of class is deleted and memory allocated to the object is released"<<endl;
age=10;
name="Mrinal";
}
void introduce()
{
cout<<"Hello I am" <<" " << name << " "<<"and my age is" << age<<endl;
}
private:
int age;
string name;
};
int main() {
human *obj; //pointer to object of type human
obj = new human; //memory block allocated to the object in the HEAP memory
//destructor not called as object is not deleted
obj->introduce();
//deallocating the memory allocated to the object
delete obj;
}