일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- lua
- 루아
- 오블완
- reference
- 상속
- 암시적 변환
- 반복자
- Smart Pointer
- virtual function
- 영화 리뷰
- implicit conversion
- more effective c++
- 비교 함수 객체
- effective stl
- 티스토리챌린지
- Effective c++
- c++
- 다형성
- 참조자
- Vector
- 영화
- UE4
- 예외
- exception
- resource management class
- 언리얼
- 메타테이블
- 게임
- 스마트 포인터
- operator new
Archives
- Today
- Total
목록포인터 예외 (1)
스토리텔링 개발자
[More Effective C++] 10. 생성자 예외 처리
항목 10. 생성자에서는 리소스 누수가 일어나지 않게 하자. 생성자 설계 예제// 이미지 정보 클래스class Image{public: Image(const string& imageDataFileName); ...};// 오디오 정보 클래스class AudioClip{public: AudioClip(const string& audioDataFileName); ...};// 전화번호 클래스class PhoneNumber { ... };// 주소록에 들어가는 하나의 정보에 대한 클래스class BookEntry{public: BookEntry(const string& name, const string& address = "", co..
개발/More Effective C++
2024. 8. 12. 11:33