일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- UE4
- 예외
- lua
- c++
- 루아
- resource management class
- 언리얼
- exception
- 참조자
- 스마트 포인터
- 상속
- more effective c++
- 오블완
- 암시적 변환
- 게임
- reference
- 다형성
- operator new
- Effective c++
- 티스토리챌린지
- 영화 리뷰
- 영화
- Smart Pointer
- 메타테이블
- 반복자
- implicit conversion
- 비교 함수 객체
Archives
- Today
- Total
목록객체 합성 (1)
스토리텔링 개발자
[Effective C++] 38. 객체 합성
항목 38 : “has a(~는 ~를 가짐)” 혹은 “is implemented in terms of(~는 ~를 써서 구현됨)”를 모형화할 때는 객체 합성을 사용하자. 합성(composition)객체가 다른 타입의 객체를 포함하고 있을 경우 성립하는 타입들 사이의 관계레이어링(layering), 포함(containment), 통합(aggregation), 내장(embedding) 등으로도 불린다.class Address { ... };class PhoneNumber { ... };class Person{public: ...private: // 아래 객체들은 Person 객체와 합성 관계이다. string name; Address address; PhoneNumber voic..
개발/Effective C++
2024. 7. 8. 11:07