컴공 일기259
게시글 주소: https://iu.orbi.kr/00070852115
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를 선물하세요.
-
감 다 뒤진 듯 16 18번틀
-
그러면 그 애는 최소 ㅅㅌㅊ 외모가 보장된 상태임 백인 혼혈들 다 연예인급이던뎅
-
물론 그냥 점공을 안한분이겠지만… 아직 최초합권이잖아 한잔해~~
-
오르비에 공유(?)해주실분
-
처음 본 사람이 학과어디냐길래 공대다닌다 했는데 약간 의외라는듯이 문과처럼...
-
국잘수망있나요? 15
저는 국어4수학1인데 서로 과외교환할 분 찾습니다
-
ㅈㄱㄴ, 핑프ㅈㅅ
-
굳이 못하는 학교 골라 갈 이유가 있을까요? 5등급제로 개편된 이후에는...어차피...
-
뭔가 재밌음
-
요즘 12시에 일어나서 나한텐 지금이 점심임
-
메가스터디 패스 동일계정 두사람이 이용 가능해요? 10
제 동생은 다운로드 해서 듣는더는데 저 인강 볼동안 얘 만약 로드인해서 들어도 안꺼나나요?
-
N >2 말고 딱 재수요 중경외시 건동홍으로 내려오면 별로 안보이나요
-
국어 깨달았는데 6
인강 굳이 들어야 할까 혼자 자습하다가 대인라 뜨면 듣는 게 차라리 낫지
-
전 잠깐 다녔지만 운이 좋게도 좋은 사람들을 많이 만났음.. 덕분에 아직 껍데기나마...
-
6월쯤 되면 반수 생각 날 것 같음 높은 의대도 아니어서 개불안함 그냥
-
오르비 댓글 다는 매크로( 파이썬 구동할 수 있으면 가능 ) 8
from selenium import webdriver from...
-
고등학교 때 다녔던 수학 학원 가서 선생님이랑 밥 먹었는데 원서 얘기 나와서 “ 아...
-
형왔다 9
인사해라
C인가요?
C++ 이에용
이런 내용들은 어디서 배울 수 있는건가요...독학으로 하시는 건가요?
독학, 책이죠 뭐