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
- this call
- std::cout
- std::ostream
- dynamic_cast
- std::endl
- vector capacity
- placement new
- c++ multi chatting room
- 더 지니어스 양면포커
- operator overloading
- increment operator
- base from member
- virtual function table
- diamond inheritance
- new&delete
- vector size
- conversion constructor
- virtual destructor
- discord bot
- virtual inheritance
- member function pointer
- pointer to member data
- suffix return type
- c++ basic practice
- virtual function
- std::vector
- constructor
- C++
- return by reference
- delete function
Archives
- Today
- Total
목록multiple inheritance (1)
I'm FanJae.
[C++] Multiple Inheritance, Diamond Inheritance, Virtual Inheritance
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. 다중 상속(Multiple Inheritance)이란?class InputFile{public: void read() {}};class OutputFile{public: void write() {}};class IOFile : public InputFile, public OutputFile{};int main(){ IOFile file; file.open();}- 클래스가 2개 이상의 기반 클래스로부터 상속 되는 것- C++,Lisp, Curl 등은 이를 지원하지만, Java, C# 등은 다중 상속을 지원하지 않는다. 1-1. 다중 상속의 문제점- 서로 다른 기반 클래스에 동일 이름의 멤버가 있을..
C++/Basic
2024. 8. 23. 11:31