컴공 일기259
게시글 주소: https://h.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를 선물하세요.
-
모아보기말고 알림으로만 오르비 하면 됨
-
매년 이맘때쯤 올라오는 의대 신입생 단톡 초대글 현재까지 1도 안보임 하긴 40개...
-
화제전환을위해 2
임시저장해놨던진학사애니프사교육청과탐사탐의대생서vs성vs한물화선택자건vs경vs외vs이수...
-
그래서 우리가 사코팍 무신사 팝업 취소해버리긔
-
가나군이렇게 있었으면 참 좋았을텐데
-
집밖으로 나가서 행동으로 보여주던가 인터넷 세상에서만 어쩌고저쩌고 왈가왈부 할거면...
-
그거 다운받고 누스바움 지문 읽어보세용.. 현 상황 설명하기 GOAT 지문임. +)...
-
쉿! 2
-
말이더ㅣ냐
-
cpa, 로스쿨 생각 없고 원래 이과였는데 사탐런한거여서 어문이랑 잘 안맞을 것...
-
정치메타 어지러워
-
흐흐 택배온다 2
-
아침 맛있게 먹고 있음
-
경제는 역시 보수 (웃음)
-
모고에 비해 너무 아쉽게 나와서 재수하려고 했는데 (광명상가 라인) 지거국 아무데나...
-
담배 3갑 정도 벌었음 ㅁㅌㅊ?
-
맞팔해요 2
-
늦게 일어나니까 하루에 두 끼만 먹어도 버틸 수 있음
-
다행히 시작하기 전에 인스타에서 여자 구경하고 있어서 살았다;
C인가요?
C++ 이에용