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
- dynamic_cast
- c++ multi chatting room
- diamond inheritance
- vector size
- virtual function
- member function pointer
- operator overloading
- virtual destructor
- virtual function table
- conversion constructor
- c++ basic practice
- base from member
- return by reference
- std::cout
- suffix return type
- new&delete
- std::ostream
- delete function
- increment operator
- discord bot
- constructor
- std::endl
- C++
- 더 지니어스 양면포커
- this call
- vector capacity
- std::vector
- virtual inheritance
- placement new
- pointer to member data
Archives
- Today
- Total
목록2024/09/12 (1)
I'm FanJae.
[C++ 기본 연습 문제] Chapter 11. 연산자 오버로딩 II
1. Chatper 11. 연산자 오버로딩 II 1-1. 깊은 복사를 하는 대입 연산자의 정의① Chapter 07에서는 예제 HASComposite.cpp를 통해서 다음의 두 클래스를 정의하였다.class Gun{ ....}class Police{private: int handcuffs; //소유한 수갑의 수 Gun *pistol; //소유하고 있는 권총public: ....}- 이에 Police 클래스를 대상으로 깊은 복사가 이뤄지도록 대입 연산자와 복사 생성자를 동시에 정의하고 이의 확인을 위해 main 함수도 적절히 정의해보자.#include #include class Gun{private: int bullet; // 장전된 총알의 수pub..
C++/Basic Practice
2024. 9. 12. 23:28