-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
61 lines (51 loc) · 985 Bytes
/
main.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
#include <iostream>
#include <string>
using namespace std;
struct Color
{
Color(const string& name) : name(name) {}
string name;
};
class Car
{
public:
Car(const string& color)
{
this->color = new Color(color);
cout << "Default construction\n";
}
~Car () // 1
{
delete color;
}
Car(const Car& other) // 2
{
color = new Color(*other.color);
}
Car& operator = (const Car& other) // 3
{
delete color;
color = new Color(*other.color);
return *this;
}
Car& operator = (const Color& other)
{
color = new Color(other);
}
Color* color;
};
Car makeNewCar()
{
Car newOne = Car("Shiny new");
return newOne;
}
int main()
{
Car toyota("Turquoise"), audi("Amber"); // construction
Color blue("Blue");
toyota = blue;
Car volvo(std::move(makeNewCar()));
{
Car volkwagen = toyota; // ctor
} // dtor
} // destruction