blob: 7fd689f0a44fbe7183facfe207bd0d82eae0fa16 (
plain) (
blame)
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
|
#include "String.h"
#include <cstring>
void String::free() {
delete[] str;
}
void String::copyFrom(const String& other) {
this->str = new char[strlen(other.str) + 1];
strcpy(this->str, other.str);
}
String::String() {
str = nullptr;
}
String::~String() {
free();
}
String::String(const String& other) {
copyFrom(other);
}
String& String::operator=(const String& other) {
if (this != &other) {
free();
copyFrom(other);
}
return *this;
}
String::String(String&& other) {
this->str = other.str;
}
String& String::operator=(String&& other) {
if (this != &other) {
free();
this->str = other.str;
}
return *this;
}
bool operator==(const String& left, const String& right) {
int i;
for (i = 0; left.str[i] != '\0' && right.str[i] != '\0'; i++) {
if (left.str[i] != right.str[i])
return false;
}
return left.str[i] == '\0' && right.str[i] == '\0';
}
bool operator!=(const String& left, const String& right) {
return !(left == right);
}
String operator+(const String& left, const String& right) {
String concat;
concat.str = new char[strlen(left.str) + strlen(right.str) + 1];
int i;
for (i = 0; left.str[i] != '\0'; i++) {
concat.str[i] = left.str[i];
}
int j;
for (j = 0; right.str[j] != '\0'; j++) {
concat.str[i+j] = right.str[j];
}
return concat;
}
|