Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- new&delete
- delete function
- c++ basic practice
- virtual inheritance
- increment operator
- constructor
- diamond inheritance
- conversion constructor
- 더 지니어스 양면포커
- this call
- virtual destructor
- std::endl
- vector capacity
- C++
- c++ multi chatting room
- std::cout
- virtual function table
- return by reference
- virtual function
- suffix return type
- vector size
- member function pointer
- pointer to member data
- std::vector
- dynamic_cast
- std::ostream
- discord bot
- placement new
- operator overloading
- base from member
Archives
- Today
- Total
목록base class (1)
I'm FanJae.
[C++] Inheritance(상속)
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. Inhertance#include class Student{ std::string name; int age; int id;};class Professor{ std::string name; int age; int major;};int main(){ Student s; Professor p;}- 학사 관리 프로그램을 만들고 있는 상태에서, Student, Professor 등 필요한 클래스를 설계중이다.- 여기서 Student, Professor 등이 가지는 공통된 속성(name,age)이 있다.- 이를 매번 적어주기 보단 공통된 것으로 묶어지면 훨씬 더 관리가 용이하다. cla..
C++/Basic
2024. 8. 20. 22:03