C++ 대입 연산자 오버로딩 (Assignment Operator Overloading)
·
C++/Overloading
대입 연산자 오버로딩 (Assignment Operator Overloading) 자기 자신을 assignment할 때(hello = hello 등) 발생할 수 있는 문제를 미리 방지할 수 있다. 깊은 복사를 직접 구현할 수 있다. #include #include class MyString { char* data_ = nullptr; int len_ = 0; public: MyString(const char* source = "") { assert(source); len_ = std::strlen(source) + 1; data_ = new char[len_]; for (int i = 0; i < len_; ++i) data_[i] = source[i]; data_[len_ - 1] = '\0&#..