일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- operator new
- 영화
- reference
- 스마트 포인터
- UE4
- effective stl
- implicit conversion
- Effective c++
- more effective c++
- 영화 리뷰
- 오블완
- 암시적 변환
- resource management class
- c++
- 언리얼
- exception
- 상속
- virtual function
- 메타테이블
- 게임
- 다형성
- 티스토리챌린지
- 예외
- lua
- 함수 객체
- Smart Pointer
- 반복자
- 비교 함수 객체
- 참조자
- 루아
Archives
- Today
- Total
목록adaptable (1)
스토리텔링 개발자
[Effective STL] 40. adaptable한 함수 객체(C++98)
항목 40. 함수 객체 클래스는 어댑터 적용이 가능하게(adaptable) 만들자 C++11 이후로는 더 이상 맞지 않는 이야기이므로 참고할 것.ptr_fun와 adaptable아래는 잘 동작하는 코드이다.list widgetPtrs;bool isInteresting(const Widget* pw);list::iterator i = find_if(widgetPtrs.begin(), widgetPtrs.end(), isInteresting);if(i != widgetPtrs.end()){ ... // interesting한 widget에 대한 첫째 포인터 처리}그렇다면 int..
개발/Effective STL
2025. 1. 8. 11:24