컴공 일기259
String 처리에 대한 객체 예제를 쭉 작성해보고 있습니다.
보잘 것 없지만 지원할 만한 것은 다 지원되는 듯 합니다… 구현되지 않은 기능들이 아직 많지만요.
이동시맨틱에, 딥 카피에, 각종 사칙 연산…
직관적인 편의성을 제공하는 객체로 변모해가는 중..
#pragma once
#include <iostream>
using namespace std;
class CMystring
{
public:
CMystring();
~CMystring();
//멤버 변수에 포인터가 있으므로 Deep Copy를 반드시 지원해야 한다.
CMystring(const CMystring&);
explicit CMystring(const char* pszData);
CMystring(CMystring&&) noexcept;
const char* getData() const;
void setData(const char*);
const size_t getLength() const;
CMystring& operator=(const CMystring& rhs);
CMystring& operator=(CMystring&& rhs) noexcept;
CMystring operator+(const CMystring& rhs);
size_t append(const char* param);
operator const char*(void) const;
private:
char*m_pszData = nullptr;
size_t length = 0;
};
CMystring::CMystring()
{
cout << "CMystring()" << endl;
}
//Deep Copy
CMystring::CMystring(const CMystring& rhs)
{
setData(rhs.m_pszData);
}
CMystring::CMystring(const char* pszData)
{
cout << "CMystring(const char*)" << endl;
setData(pszData);
}
CMystring::CMystring(CMystring&& rhs)
{
cout << "CMystring(CMystirng&&)" << endl;
delete m_pszData;
m_pszData = rhs.m_pszData; //shallow copy
this->length = rhs.length;
rhs.m_pszData = nullptr; //댕글링 포인터로 만들어준다.
}
CMystring::~CMystring()
{
cout << "~CMystring()" << endl;
delete[] m_pszData;
}
CMystring& CMystring::operator=(const CMystring& rhs)
{
this->setData(rhs.m_pszData);
return *this;
}
CMystring& CMystring::operator=(CMystring&& rhs)
{
cout << "opeartor=(CMystring&&)" << endl;
delete m_pszData;
m_pszData = rhs.m_pszData;
this->length = rhs.length;
rhs.m_pszData = nullptr;
return *this;
}
CMystring::operator const char*(void) const
{
return m_pszData;
}
const char* CMystring::getData() const
{
return m_pszData;
}
void CMystring::setData(const char* pParam)
{
//setData()가 여러번 호출될 경우, m_pszData가 null이 아닐 수도 있다.
if(m_pszData != nullptr)
delete[] m_pszData;
size_t length = strlen(pParam);
m_pszData = new char[length + 1];
this->length = length;
strcpy(m_pszData, pParam);
}
CMystring CMystring::operator+(const CMystring& rhs)
{
CMystring retVal(*this);
retVal.append(rhs.getData());
return retVal;
}
size_t CMystring::append(const char* param)
{
if(param == nullptr) return -1;
if(m_pszData == nullptr)
{
this->setData(param);
return this->length;
}
size_t lenAppend = strlen(param);
char* result = new char[length + lenAppend + 1];
strncpy(result, m_pszData, length+1);
result[length] = '\0';
strncat(result, param, lenAppend);
delete[] m_pszData;
m_pszData = result;
length += lenAppend;
return this->length;
}
const size_t CMystring::getLength() const
{
return this->length;
}
CMystring operator+(const char* pLeft, const CMystring& rhs)
{
CMystring result(pLeft);
result.append(rhs.getData());
return result;
}
0 XDK (+0)
유익한 글을 읽었다면 작성자에게 XDK를 선물하세요.
-
pt받고 온다
-
그저 빡갤 념글을 눈팅하다가 어그로 글에 들어왔는데
-
얼버기 6
갓생 ㅁㅌㅊ
-
ㅜㅠㅜ
-
ㅇㅇ?
-
아 너무 추워 4
저대신 나갔다오실분
-
보배반점자리는 2
전에 순대국이었음
-
현재 서울 일반고 재학중인 이과 예비 고3입니다. 현재 제 고등학교는 내신은...
-
https://www.instagram.com/orbi_kr/profilecard/?...
-
송민호, 상의탈의 강원도 파티 목격담...선택적 대인기피? 3
그룹 위너 송민호가 사회복무요원 부실복무 의혹으로 경찰에 입건됐다. 송민호가...
-
2층에 하이컨시라는 새로운 와파 생겼믄데 안뚫리네 ㅠㅠ
-
어차피 붙을거 ㅎㅎ..
-
현재 공대 취업 3
스카이 전화기 다니는 친구가 그러는데 지금 공대 츼업 다 박살 났다는데 맞나요?
-
난 1년 6개월 군복무하러 가는것도 무서워서 떠는 와중에 우리 아버지는 2년...
-
빅 깨달음
-
어떻게 읽어야 효율적일까 어떻게 해야할까
-
외대 나쁘지 않겠져…?
-
민주당 예전에 대행은 헌재판관 임명 안된다 하지 않음? 1
내가 뭘 잘못 알고 있는건가
-
헬스 한달차 1
턱살 많이 빠지고 배도 들어감 돼지에서 사람으로 진화 중
-
다군 2칸인데 2
왜 작수 성적 대입하면 최초합인 것인가..
C인가요?
C++ 이에용