일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 암시적 변환
- 다형성
- effective stl
- lua
- 영화 리뷰
- 오블완
- implicit conversion
- Smart Pointer
- reference
- resource management class
- virtual function
- 반복자
- 예외
- Vector
- UE4
- 메타테이블
- 상속
- 루아
- Effective c++
- exception
- c++
- 티스토리챌린지
- 비교 함수 객체
- 참조자
- operator new
- 스마트 포인터
- 게임
- 영화
- 언리얼
- more effective c++
Archives
- Today
- Total
목록template interface (1)
스토리텔링 개발자
[Effective C++] 43. 템플릿 부모 클래스의 인터페이스에 접근하기
항목 43. 템플릿으로 만들어진 기본 클래스 안의 이름에 접근하는 방법을 알아두자 템플릿 클래스에서 생길 수 있는 문제class CompanyA{public: void sendCleartext(const string& msg); void sendEncrypted(const string& msg); ...};class CompanyB{public: void sendCleartext(const string& msg); void sendEncrypted(const string& msg); ...};class MsgInfo { ... };// 템플릿 기본 클래스templateclass MsgSender{public: void sendClear(const MsgInfo& ..
개발/Effective C++
2024. 7. 15. 11:16