RSS Feed
Articles
-
11.3 유도된 클래스들의 생성 순서
```c++ class Mother { public: int m_i;
Mother(const int & i_in = 0) : m_i(i_in) { cout « “Mother construction” « “\n”;
} }; -
11.2 상속의 기본(2) is-a relationship
Person header ```c++ #pragma once
-
11.1 상속의 기본(1) is-a relationship
```c++ #include
using namespace std; -
10.6 컨테이너 클래스
```c++ #include
#include using namespace std; -
10.5 의존관계 Dependencies
Timer header