-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathassignment.cpp
111 lines (88 loc) · 2.23 KB
/
assignment.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
// {"category": "Operator", "notes": "Add assignment operator to CMyString"}
#include <SDKDDKVer.h>
#include <stdio.h>
#include <tchar.h>
#include <iostream>
using namespace std;
//------------------------------------------------------------------------------
//
// The declaration of class CMyString is found below. Please add an assignment
// operator to it.
//
//------------------------------------------------------------------------------
class CMyString
{
public:
CMyString(char* pData = nullptr);
CMyString(const CMyString& str);
~CMyString();
private:
char* m_pData;
//------------------------------------------------------------------------------
//
// Implementation
//
//------------------------------------------------------------------------------
public:
CMyString& operator=(const CMyString& str);
const char* c_str() { return m_pData; }
};
CMyString& CMyString::operator=(const CMyString& str)
{
if (&str != this)
{
CMyString temp(str);
swap(m_pData, temp.m_pData);
}
return *this;
}
//------------------------------------------------------------------------------
//
// Unit tests
//
//------------------------------------------------------------------------------
CMyString::CMyString(char* pData)
: m_pData(nullptr)
{
if (pData != nullptr)
{
size_t cch = strlen(pData) + 1;
m_pData = new char[cch];
if (m_pData != nullptr)
{
if (strcpy_s(m_pData, cch, pData) != 0)
{
delete[] m_pData;
m_pData = nullptr;
}
}
}
}
CMyString::CMyString(const CMyString& str)
: CMyString(str.m_pData)
{
}
CMyString::~CMyString()
{
if (m_pData != nullptr)
{
delete[] m_pData;
m_pData = nullptr;
}
}
int _tmain(int argc, _TCHAR* argv[])
{
CMyString nullString;
CMyString emptyString("");
CMyString someString("some");
CMyString str = nullString;
if (str.c_str() == nullptr)
cout << "(null)" << endl;
else
cout << "\"" << str.c_str() << "\"" << endl;
str = emptyString;
cout << "\"" << str.c_str() << "\"" << endl;
str = someString;
cout << "\"" << str.c_str() << "\"" << endl;
return 0;
}