일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스마트 포인터
- c++
- effective stl
- Effective c++
- 함수 객체
- more effective c++
- operator new
- reference
- 참조자
- 비교 함수 객체
- 상속
- 반복자
- exception
- lua
- 오블완
- 영화
- 언리얼
- Smart Pointer
- 게임
- implicit conversion
- 메타테이블
- 영화 리뷰
- 예외
- 티스토리챌린지
- resource management class
- virtual function
- UE4
- 암시적 변환
- 다형성
- 루아
Archives
- Today
- Total
목록2025/01/31 (1)
스토리텔링 개발자
[Effective STL] 49. 컴파일러 에러 해석하기
항목 49. STL에 관련된 컴파일러 진단 메시지를 해석하는 능력을 가지자 컴파일러 에러 예시 1vector v(10); // 크기 10의 벡터를 하나 만든다. 성공.string s(10); // 크기 10인 string 객체를 만든다? 실패비주얼 c++에서 아래와 같은 에러가 발생한다.example.cpp(20): error C2664:'__thiscall std::basic_string,class std::allocator>::std::basic_string,classstd::allocator >(const class std::allocator &)': cannot convertparameter 1 from 'const int' to 'const class std::allocator &' Reas..
개발/Effective STL
2025. 1. 31. 10:23