일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- virtual function
- effective stl
- 영화 리뷰
- 오블완
- implicit conversion
- 게임
- Smart Pointer
- 비교 함수 객체
- reference
- 반복자
- Effective c++
- exception
- 참조자
- 영화
- more effective c++
- lua
- 스마트 포인터
- 언리얼
- 상속
- operator new
- 암시적 변환
- 예외
- 루아
- resource management class
- 메타테이블
- 티스토리챌린지
- c++
- UE4
- 다형성
- 함수 객체
Archives
- Today
- Total
목록2024/10/17 (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