일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 c++
- 암시적 변환
- 언리얼
- 스마트 포인터
- UE4
- lua
- 예외
- effective stl
- reference
- c++
- 참조자
- 비교 함수 객체
- 메타테이블
- 반복자
- 다형성
- resource management class
- 루아
- 상속
- 함수 객체
- operator new
- 오블완
- more effective c++
- exception
- implicit conversion
- 게임
- Smart Pointer
- virtual function
- 티스토리챌린지
- 영화
Archives
- Today
- Total
목록const_iterator를 iterator로 (1)
스토리텔링 개발자
[Effective STL] 27. const_iterator를 iterator로 바꾸기
항목 27. const_iterator를 iterator로 바꾸는 데에는 distance와 advance를 사용하자 const_iterator를 iterator로 캐스팅?const_iterator는 암묵적 변환이 일어나지 않으므로 직접 바꿔주어야 한다.그렇다면 캐스팅(casting)을 쓰면 될까?using IntDeque = deque;using Iter = IntDeque::iterator;using ConstIter = IntDeque::const_iterator;IntDeque d;ConstIter ci;...Iter i(ci); // 에러 발생. 암묵적 변환은 불가능하다.Iter i2(const_cast(ci); // 여전히 에러. 캐스팅이 불가능하다.const_iterator와 iterato..
개발/Effective STL
2024. 12. 12. 10:50