목록C++/따배C++ 11강 상속 (3)
일상 코딩
[C++/11.03] 유도된 클래스들의 생성 순서
#include using namespace std; class Mother { public: int m_i; Mother() : m_i(1) { cout
C++/따배C++ 11강 상속
2021. 11. 7. 00:45
[C++/11.02] 상속 기본 2
1. main.cpp #include "Student.h" #include "Teacher.h" using namespace std; int main() { Student std("Jack Jack"); std.setName("Jack Jack 2"); std.getName(); Teacher teacher1("Dr. H"); teacher1.setName("Dr. K"); cout
C++/따배C++ 11강 상속
2021. 11. 6. 23:01