forked from ManishShah120/Oops_Wi2_Cplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path025Overload_new_delete_operators_in_a_class.cpp
135 lines (120 loc) · 2.06 KB
/
025Overload_new_delete_operators_in_a_class.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#include<iostream>
#include<string.h>
#include<new>
#include<stdlib.h>
using namespace std;
const int MAX = 5;
const int FREE = 0;
const int OCCUPIED = 1;
void memwarning( )
{
cout << endl <<"Free store has now gone empty";
exit( 1 );
}
class employee
{
private:
char name[20];
int age;
float sal;
public:
void *operator new(size_t bytes);
void operator delete( void * q );
void setdata( char * n, int a, float s );
void showdata();
~employee();
};
struct pool
{
employee obj;
int status;
};
int flag=0;
struct pool *p = NULL;
void * employee::operator new( size_t sz )
{
int i;
if( flag == 0 )
{
p = ( pool * )malloc( sz * MAX );
if( p == NULL )
memwarning( );
for( i = 0; i < MAX; i++ )
p[ i ].status = FREE;
flag = 1;
p[ 0 ].status = OCCUPIED;
return &p[ 0 ].obj;
}
else
{
for( i = 0; i < MAX; i++ )
{
if( p[ i ].status = FREE )
{
p[ i ].status = OCCUPIED;
return &p[ i ].obj;
}
}
memwarning( );
}
}
void employee::operator delete( void * q )
{
if(q == NULL)
return;
for(int i = 0; i < MAX; i++)
{
if(q == &p[ i ].obj)
{
p[i].status = FREE;
strcpy(p[i].obj.name, "" );
p[i].obj.age = 0;
p[i].obj.sal = 0.0;
}
}
}
void employee::setdata( char * n, int a, float s )
{
strcpy(name, n);
age = a;
sal = s;
}
void employee::showdata()
{
cout << endl << name << "\t" << age << "\t" << sal;
}
employee::~employee()
{
cout << endl << "reached destructor";
free(p);
}
int main()
{
void memwarning();
set_new_handler(memwarning);
employee * e1,*e2,*e3,*e4,*e5,*e6;
e1 = new employee;
e1->setdata("ajay", 23, 4500.50 );
e2 = new employee;
e2->setdata("amol", 25, 5500.50 );
e3 = new employee;
e3->setdata("anil", 26, 3500.50 );
e4 = new employee;
e4->setdata("anuj", 30, 6500.50 );
e5 = new employee;
e5->setdata("atul", 23, 4200.50 );
e1->showdata();
e2->showdata();
e3->showdata();
e4->showdata();
e5->showdata();
delete e4;
delete e5;
e4->showdata( );
e5->showdata( );
e4 = new employee;
e5 = new employee;
e6 = new employee;
cout << endl << "Done!!";
return 0;
}