-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperator_overloading.cpp
366 lines (274 loc) · 8.18 KB
/
operator_overloading.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
#include <iostream>
#include <cstring>
#include <cmath>
using namespace std;
//Operator overloading
/*
destructor -->release source
copy constructor --> deep copy
assignment operator function --> release source + deep copy
*/
//ex1
// class Name{
// private:
// char *pd;
// int len;
// public:
// Name(const char* p);
// Name(const Name &r);
// void display()const;
// int getlen()const;
// char* address();
// ~Name();
// Name &operator=(const Name &r);
// Name &operator+(const Name &r);
// Name &operator<<(const Name &r);
// };
// Name& Name::operator+(const Name &r) {
// cout<<"operator + is calling"<<endl;
// return *this;
// }
// //HATALI
// // Name& Name::operator<<(const Name &r) {
// // cout<<"<< operator"<<endl;
// // return *this;
// // }
// //DOGRU
// Name& Name::operator<<(const Name &r) {
// std::cout<<"<< operator"<<std::endl;
// return *this;
// }
// Name::Name(const char* p){
// len = strlen(p);
// pd =new char[len+1];
// strcpy(pd,p);
// cout<<"pd ="<<pd<<endl;
// }
// Name::Name(const Name &r) {
// len = r.len;
// pd = new char[len+1];
// strcpy(pd,r.pd);
// cout<<"copy constructor"<<endl;
// }
// Name::~Name(){
// cout<<"destructor"<<endl;
// delete [] pd;
// }
// void Name::display()const {
// cout<<"name: "<<this->pd<<endl;
// }
// int Name::getlen()const {
// return len;
// }
// void func(Name p) {
// cout<<"func calling"<<endl;
// getchar();
// }
// Name &Name::operator=(const Name &r) {
// cout<<"operator"<<endl;
// len = r.len;
// delete [] pd;
// pd =new char[len+1];
// strcpy(pd,r.pd);
// return *this;
// }
// int main(){
// Name my_name("mehmet");
// // my_name.display();
// Name my_name_2 = "omer";
// // my_name_2.display();
// //my_name = my_name_2;
// //(my_name = my_name_2).display();
// // 83 ile aynı...
// //my_name.operator=(my_name_2)
// //cout.operator<<("deneme").operator<<(endl);
// Name name3("ali");
// name3 = my_name + my_name_2;
// name3.display();
// name3<<my_name;
// }
//ex2
// class Box {
// private:
// double length;
// double width;
// double height;
// public:
// Box(){
// cout<<"constructor"<<endl;
// }
// ~Box(){
// cout<<"destructor"<<endl;
// }
// double getVolume(){
// return length * width * height;
// }
// Box(double l,double w,double h){
// length = l;
// width = w;
// height = h;
// cout<<"box volume:"<<l*w*h<<endl;
// }
// void setLength(double l) {
// if(l<0)
// cout<<"length should be greater than zero"<<endl;
// else
// length = l;
// }
// void setWidth(double w) {
// if(w<0)
// cout<<"width should be greater than zero"<<endl;
// else
// width = w;
// }
// void setHeight(double h) {
// if(h<0)
// cout<<"height should be greater than zero"<<endl;
// else
// height = h;
// }
// void display(){
// cout<<"lenght"<<length<<endl;
// cout<<"width"<<width<<endl;
// cout<<"height"<<height<<endl;
// cout<<"============="<<endl;
// }
// // operators
// Box& operator=(const Box&r) {
// this->height = r.height;
// this->length = r.length;
// this->width = r.width;
// return *this;
// }
// Box operator+(const Box&r) {
// Box result_box;
// result_box.length = this->length + r.length;
// result_box.height = this->height + r.height;
// result_box.width = this->width + r.width;
// return result_box;
// }
// bool operator==(const Box &r) {
// double thisVolume = this->getVolume();
// double referenceVolume = r.height*r.length*r.width;
// if(thisVolume == referenceVolume)
// return true;
// else
// return false;
// }
// bool operator<(const Box &r) {
// double thisVolume = this->getVolume();
// double referenceVolume = r.height*r.length*r.width;
// if(thisVolume < referenceVolume)
// return true;
// else
// return false;
// }
// bool operator>(const Box &r) {
// double thisVolume = this->getVolume();
// double referenceVolume = r.height*r.length*r.width;
// if(thisVolume > referenceVolume)
// return true;
// else
// return false;
// }
// };
// int main(){
// //ex2
// // Box box1;
// // Box box2(4.2,3.3,2.2);
// // cout<<"box2 volume:"<<box2.getVolume()<<endl;
// // box2.setHeight(2.0);
// // box2.setLength(2.0);
// // box2.setWidth(2.0);
// // cout<<"box2 volume:"<<box2.getVolume()<<endl;
// // box1 = box2;
// // // box1.operator=(box2);
// // cout<<"box1 volume:"<<box1.getVolume()<<endl;
// //ex3
// // Box box1(4,2,3);
// // Box box2;
// // box2 = box1;
// // Box box3;
// // box3 = box1 + box2;
// // box1.display();
// // box2.display();
// // box3.display();
// // ex4
// Box box1(4,3,2);
// Box box2(1,1,1);
// //box2 = box1;
// // == operatoru
// // if(box1 == box2)
// // cout<<"iki obje esittir"<<endl;
// // else
// // cout<<"iki obje esit degildir"<<endl;
// if(box1 > box2)
// cout<<"box1 buyuktur"<<endl;
// else
// cout<<"box1 buyuk degildir"<<endl;
// if(box1 < box2)
// cout<<"box1 kucuktur"<<endl;
// else
// cout<<"box1 kucuk degildir"<<endl;
// }
//ex5
class ComplexNumbers {
private:
double real;
double imag;
public:
~ComplexNumbers(){
cout<<"destructor"<<endl;
}
ComplexNumbers(double r = 10, double i= 10){
real = r;
imag = i;
cout<<" r, i constructor"<<endl;
}
void display()const {
cout<<real<<"+i"<<imag<<endl;
}
//operator overloading
ComplexNumbers operator+(ComplexNumbers const &obj) {
ComplexNumbers com1;
com1.real = this->real + obj.real;
com1.imag = this->imag + obj.imag;
return com1;
}
ComplexNumbers& operator=(ComplexNumbers const &obj) {
this->real = obj.real;
this->imag = obj.imag;
return *this;
}
ComplexNumbers operator*(int r) {
this->real *= r;
this->imag *= r;
return *this;
}
bool operator==(ComplexNumbers const &ref) {
double absValueThis =sqrt((this->real*this->real)*(this->imag*this->imag));
double absValueRef =sqrt((ref.real*ref.real)*(ref.imag*ref.imag));
if(absValueThis == absValueRef )
return true;
return false;
}
};
// int main(){
// ComplexNumbers com1(4,4);
// ComplexNumbers com2(2,2);
// ComplexNumbers com3;
// // burada çalıştı
// //com2 = com2 *2;
// com3 = com1*2 + com2;
// com3.display();
// com1.display();
// com2.display();
// }
int main(){
ComplexNumbers com1(4,4);
ComplexNumbers com2(4,4);
if(com1 == com2)
cout<<"com1 esittir com2"<<endl;
else
cout<<"com1 com2 ye esit degildir"<<endl;
}