컴공 일기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를 선물하세요.
-
숙대 입결 3
아주대보다 낮다던데 진짜인건가요?
-
이주호 드가자 ㅋㅋ
-
아오 ㅋㅋㅋ
-
출신인 경우가 더 많을까요? 사시는 이제 고위직에만 남아있고 평검사나 일반...
-
대리수능응시 2
솔직히 몇번씩 있었을거 같지 않음? 이것도 당사자들이 떠벌려서 들킨 사건인데 ㅋㅋ...
-
썩 마 2
?
-
이번에 입결 더 오를거같고..
-
정치글 소신발언 1
먼저 정치글이 안올라왔으면 한다는 사람이 정치글을 올리는 것에 대한 사과를 하고...
-
연대 상경계열 1
지원하려는데 경제학과 응통 학과소개 영상보니 미적분알고와야한다거 하네요 시발점 시작해야될까요
-
자작문항 비율이 많나 좀 비싼데
-
놀라운 거 1
슈퍼쥬니어 쏘리 쏘리 이거 나올때 태어난 애들이 3달후에 고딩됨
-
세특 + 발달 어쩌구 << 담임이 써주는 것만 들어가는 거 맞음?
-
이런 거 있는지 방금 알고 들어가 봤는데 이거 자리 없는거죠 이제?
-
SK하닉이나 삼전등 대기업 취업도 잘되는편인가요??
-
민주주의 국가니까 국민들이 외계인들한테 정신개조 당하지 않는한 나라는 잘 크겠지
-
기만하지 마세요 4
-
얼버기 4
좋은 아침
-
문송합니다 3
메가 러셀에서도 현강 안해주는 미천한 경제 선택자라 ㅈㅅㅎㄴㄷ
-
https://orbi.kr/00026425479원본 출처입니다. (원본 제작자님께...
-
가나다군 3개 다 상향으로 넣을라하는데 힉교 점수랑 제 점수랑 몇점 정도 나는게 정배일까요??ㅜ
C인가요?
C++ 이에용