C++ Nested Types
·
C++/Class
Nested Types 클래스 안에서만 사용하는 자료형은 클래스 내부에 정의하는게 좋다. 예제 unscoped enum 사용 #include class Fruit { public: enum FruitType { APPLE, BANANA, CHERRY }; private: FruitType type_; public: Fruit(FruitType type) : type_(type) {} FruitType getType() { return type_; } }; int main() { Fruit apple(Fruit::APPLE); if (apple.getType() == Fruit::APPLE) { std::cout
C++ 익명 객체 (Anonymous Class)
·
C++/Class
익명 객체 (Anonymous Class) R-value처럼 사용할 수 있다. 예제 #include class A { public: A() { std::cout
C++ friend
·
C++/Class
friend 클래스 내부에다가 friend 키워드 다음에 다른 클래스나 함수를 선언하면, 해당 클래스나 함수에서 private 멤버에 접근할 수 있다. 예제 간단한 예제 #include class A { int value_ = 1; friend void doSomething(A& a); }; void doSomething(A& a) { std::cout
C++ 정적 멤버 함수 (Static Member Function)
·
C++/Class
정적 멤버 함수 (Static Member Function) 클래스의 멤버 함수들은 한 번만 정의하고, this를 통해 인스턴스의 주소를 포함해서 전달한다고 했다. 인스턴스 없이 범위 지정 연산자로 바로 멤버 함수를 사용하고자 할 때, 굳이 static을 붙여야 동작할 수 있는건가 싶어서 간단한 예제를 만들어 보았다. #include class Something { static int s_value_; public: int getValue() { return s_value_; } }; int Something::s_value_ = 1; int main() { using namespace std; cout
C++ 정적 멤버 변수 (Static Member Variable)
·
C++/Class
정적 멤버 변수 (Static Member Variable) 클래스 내부에 static 변수를 정의할 때는 직접 초기화할 수 없다. 중복 선언 문제인 것 같다. 생성자에서도 초기화할 수 없다. Inner Class를 사용해서 우회하여 초기화할 수는 있다. 예제 static이 아닌 기본 예제 #include class Something { public: int value_ = 1; }; int main() { using namespace std; Something st1; Something st2; st1.value_ = 2; cout
C++ static (Class)
·
C++/Class
static 정적 멤버 변수 (Static Member Variable) 정적 멤버 함수 (Static Member Function)
C++ 체이닝(Chaining)
·
C++/Class
체이닝(Chaining) 함수의 반환 값을 해당 인스턴스의 레퍼런스로 전달하여, 연속해서 함수를 사용할 수 있도록 하는 기법이다. 아래와 같이 함수를 하나씩 작성하면 귀찮다. #include class Calc { int value_; public: Calc(const int &value_in) : value_{value_in} {} void add(int value) { value_ += value; } void sub(int value) { value_ -= value; } void mul(int value) { value_ *= value; } void print() { std::cout
C++ this
·
C++/Class
this 인스턴스 객체의 주소를 가리킨다. 예제 #include class Simple { int id_; public: Simple(const int& id_in) { setID(id_in); std::cout
C++ 소멸자 (Destructor)
·
C++/Class
소멸자 (Destructor) 인스턴스가 메모리에서 해제될 때 내부에서 호출되는 함수 메모리 누수를 방지할 때 필수적이다. #include class Simple { int num_; public: Simple(const int& num_in) : num_{num_in} { std::cout
C++ 변환 생성자(Converting Constructor)
·
C++/Class
변환 생성자(Converting Constructor) explicit 키워드가 없는 생성자는 묵시적으로 형변환을 허용한다. 변환이 가능한 경우는 해당 인자를 생성자에 인자로 주었을 때 유효한 경우이다. #include #include class Fraction { int numerator_; int denominator_; public: Fraction(int num = 0, int den = 1) : numerator_(num), denominator_(den) { std::cout
C++ 복사 생성자(Copy Constructor)
·
C++/Class
복사 생성자(Copy Constructor) 보안이 중요한 경우 복사 생성자를 private로 정의하여 복사를 방지하기도 한다. 기본 복사 생성자는 얕은 복사이므로 주의하자. 이를 방지하기 위해 깊은 복사를 구현해야 하는데, 시간적 여유가 없을 경우 임시로 delete를 통해 구현하기도 한다. copy initialization, direct initialization, uniform initialization 모두 복사 생성자를 호출한다. #include #include class Fraction { int numerator_; int denominator_; public: Fraction(int num = 0, int den = 1) : numerator_(num), denominator_(den) ..
C++ 위임 생성자 (Delegating Constructor)
·
C++/Class
위임 생성자 (Delegating Constructor) C++11 생성자에서 직접 생성하지 않고, 이미 구현된 생성자를 호출해서 대신 생성하도록 하는 것이다. 기본 예제 다음 예제에서는 st2를 생성할 때 id_, name_ 멤버 변수를 초기화 리스트로 초기화하고있다. #include using namespace std; class Student { int id_; string name_; public: Student(const string& name_in) : id_{0}, name_{name_in} { print(); } Student(const int& id_in, const string& name_in) : id_{id_in}, name_{name_in} { print(); } void prin..
C++ 멤버 초기화 리스트 (Member Initializer Lists)
·
C++/Class
멤버 초기화 리스트 (Member Initializer Lists) 생성자를 만들 때 멤버들을 초기화해주는 기능 C++11부터 배열도 이 방식으로 초기화 가능하다고 한다. #include class Something { int i_; double d_; char c_; public: Something() : i_{ 1 }, d_{ 3.14 }, c_{ 'a' } {} }; int main() { Something a; } 기본 값 적용 우선순위가 헷갈릴 때 #include class Something { int i_ = 100; double d_ = 100.0; char c_ = 'F'; public: Something() : i_{ 1 }, d_{ 3.14 }, c_{ &#..
C++ 생성자 (Constructor)
·
C++/Class
생성자 (Constructor) 인스턴스가 처음 생성될 때 호출되는 함수 멤버 변수부터 생성하고 그 다음 호출된다. 멤버 중에 클래스가 있을 경우 해당 클래스의 생성자부터 호출된다. #include class Second { public: Second() { std::cout
C++ 접근 지정자 (Access Specifier)
·
C++/Class
접근 지정자 (Access Specifier) 종류 public : 어디서든 접근 가능하다. private : 해당 클래스와 friend 클래스만 접근 가능하다. protected : private 특성을 기본으로, 상속받은 자식 클래스도 접근 가능하다. 명시하지 않는 경우, 기본 값은 private이다. private이어도 같은 클래스면 다른 인스턴스의 멤버를 사용할 수 있다. class Date { int year_; int month_; int day_; void copyFrom(const Date& original) { year_ = original.year_; month_ = original.month_; day_ = original.day_; } }; public 멤버 변수들에 대해 unifo..
C++ Class
·
C++/Class
Class struct vs class c++에서의 구조체도 멤버 함수를 가질 수 있다. _단순한 기능_의 경우 struct를 사용해도 무방하다. class를 사용하는 이유는 다양한 객체지향 프로그래밍 기법들을 적용하기 위함이다. Access Specifier (public, private, protected 등) 접근 지정자 (Access Specifier) 생성자 (Constructor) 소멸자 (Destructor) this const static friend 익명 객체 (Anonymous Class) Nested Types 실행 시간 측정 (Run Time Measurement) 참고 따라하며 배우는 C++