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] = &#39;\0&#..
C++ 형변환 오버로딩 (Typecasts Overloading)
·
C++/Overloading
형변환 오버로딩 (Typecasts Overloading) (int)객체, int(객체), static_cast(객체) 등의 형태로 형변환을 할 수 있게 해준다. 묵시적 형변환도 가능해진다. 예제 #include class Cents { int cents_; public: Cents(int cents = 0) { cents_ = cents; } operator int() { std::cout
C++ 괄호 연산자 오버로딩 (Parenthesis Operator Overloading)
·
C++/Overloading
괄호 연산자 오버로딩 (Parenthesis Operator Overloading) ()(parenthesis) 오버로딩 방법은 [](subscript) 연산자와 같다. Functor 객체를 함수처럼 사용하는 것 예제 #include class Accumulator { int counter_ = 0; public: int operator() (int i) { return (counter_ += i); } }; int main() { using namespace std; Accumulator acc; cout
C++ 첨자 연산자 오버로딩 (Subscript Operator Overloading)
·
C++/Overloading
첨자 연산자 오버로딩 (Subscript Operator Overloading) [](subscript operator) 내부에 숫자 뿐만 아니라 문자 등 다양한 자료형이 들어갈 수 있다. 예제 #include class IntList { int list_[10]; public: int& operator [] (const int index) { return list_[index]; } }; int main() { using namespace std; IntList my_list; my_list[3] = 1; cout
C++ 증감 연산자 오버로딩 (Increment and Decrement Operator Overloading)
·
C++/Overloading
증감 연산자 오버로딩 (Increment and Decrement Operator Overloading) ++ 연산자 오버로딩 예제 전위(prefix), 후위(postfix)에 따라 오버로딩 방식이 다르다. 클래스 내에서 정의하는 연산자 오버로딩은 파라미터를 받지 않으면 단항 연산자처럼 앞에 붙는 방식으로 오버로딩된다. (전위) 따라서 후위 연산자를 오버로딩하려면 int 자료형의 더미 변수가 있어야 한다. #include class Digit { int digit_; public: Digit(const int& digit) { digit_ = digit; } // prefix Digit& operator ++ () { ++digit_; return (*this); } // postfix Digit ope..
C++ 비교 연산자 오버로딩 (Comparison Operator Overloading)
·
C++/Overloading
비교 연산자 오버로딩 (Comparison Operator Overloading) if문, std::sort 등을 사용하려면 필수적으로 구현해야 한다. 예제 ==, != 오버로딩 예제 #include class Cents { int cents_; public: Cents(int cents = 0) { cents_ = cents; } bool operator == (Cents& c) { return (cents_ == c.cents_); } bool operator != (Cents& c) { return (cents_ != c.cents_); } friend std::ostream& operator
C++ 단항 연산자 오버로딩 (Unary Operator Overloading)
·
C++/Overloading
단항 연산자 오버로딩 (Unary Operator Overloading) -, ! 오버로딩 #include class Cents { int cents_; public: Cents(int cents = 0) { cents_ = cents; } Cents operator - () const { return Cents(-cents_); } bool operator ! () const { return (cents_ == 0) ? true : false; } friend std::ostream& operator
C++ 입출력 연산자 오버로딩 (I/O Operator Overloading)
·
C++/Overloading
입출력 연산자 오버로딩 (I/O Operator Overloading) 멤버 함수로 만들 수 없다. 첫 번째 인자가 stream이기 때문이다. 예제 friend를 사용한 출력 연산자 오버로딩 예제 #include class Point { double x_; double y_; double z_; public: Point(double x = 0.0, double y = 0.0, double z = 0.0) : x_(x), y_(y), z_(z) {} friend std::ostream& operator
C++ 산술 연산자 오버로딩 (Arithmetic Operator Overloading)
·
C++/Overloading
산술 연산자 오버로딩 (Arithmetic Operator Overloading) 클래스 안에서 정의해도 되고, 밖에서 정의해도 된다. 안에서 정의할 때는 this로 첫 번째 파라미터를 받게되므로 파라미터가 하나 줄어든다. 밖에서 정의할 때는 클래스에서 friend 키워드로 선언해주는게 편할 수도 있다. 예제 오버로딩을 하지 않은 예제 #include class Cents { int cents_; public: Cents(const int& cents = 0) { cents_ = cents; } int getCents() const { return cents_; } int& getCents() { return cents_; } }; Cents add(const Cents& c1, const Cents& ..
C++ 오버로딩 (Overloading)
·
C++/Overloading
오버로딩 (Overloading) 산술 연산자 오버로딩 (Arithmetic Operator Overloading) 입출력 연산자 오버로딩 (I/O Operator Overloading) 단항 연산자 오버로딩 (Unary Operator Overloading) 비교 연산자 오버로딩 (Comparison Operator Overloading) 증감 연산자 오버로딩 (Increment and Decrement Operator Overloading) 첨자 연산자 오버로딩 (Subscript Operator Overloading) 괄호 연산자 오버로딩 (Parenthesis Operator Overloading) 형변환 오버로딩 (Typecasts Overloading) 대입 연산자 오버로딩 (Assignmen..