일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 영화 리뷰
- reference
- resource management class
- Vector
- 예외
- 반복자
- 참조자
- 암시적 변환
- 영화
- lua
- operator new
- exception
- 오블완
- Smart Pointer
- 메타테이블
- 루아
- 언리얼
- implicit conversion
- 상속
- 다형성
- virtual function
- 티스토리챌린지
- more effective c++
- effective stl
- 게임
- UE4
- c++
- 스마트 포인터
- 비교 함수 객체
- Effective c++
Archives
- Today
- Total
목록non-leaf class (1)
스토리텔링 개발자
[More Effective C++] 33. 추상 클래스(abstract class)
항목 33. 상속 관계의 말단에 있지 않은(non-leaf) 클래스는 반드시 추상 클래스로 만들자 대입 문제class Animal{public: Animal& operator=(const Animal& rhs); ...};class Lizard : public Aanimal{public: Lizard& operator=(const Lizard& rhs); ...};class Chicken : public Animal{public: Chicken& operator=(const Chicken& rhs); ...};Lizard liz1;Lizard liz2;Animal* pAnimal1 = &liz1;Animal* pAnimal2 = &liz2;...*pAnimal1 = *..
개발/More Effective C++
2024. 10. 17. 11:21