Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DirectX11
- 줄 세우기
- Programmers
- UnrealEngine5
- Frustum
- UnrealEngine4
- RVO
- const
- C++
- C
- Unreal Engine5
- 1563
- 백준
- UE5
- algorithm
- 프로그래머스
- DeferredRendering
- winapi
- directx
- 팰린드롬 만들기
- 언리얼엔진5
- NRVO
- 2294
- 오블완
- softeer
- IFileDialog
- RootMotion
- 티스토리챌린지
- baekjoon
- GeeksForGeeks
Archives
- Today
- Total
목록const 키워드 (1)
Game Develop
[C++] const 관련 정리.
Example 1. const키워드가 *앞에 선언될 경우 -> Heap에 락걸려있다는 느낌 int num1 = 4; int num2 = 61; const int* pNum = nullptr; pNum = &num1; // 정상적으로 수행 *pNum = 10; // Error const키워드가 *앞에 선언될 경우, 참조하는 값이 상수화된다. 그렇기때문에 pNum이라는 포인터변수의 값이 변경되는거는 상관없지만, 포인터가 가리키고있는 값의 변경에는 에러가 뜬다. Example 2. const키워드가 * 뒤에 선언될 경우 -> Stack에 락걸려있다는 느낌. int num1 = 4; int num2 = 61; int* const pNum = nullptr; pNum = &num1; // Error *pNum =..
C++/C++
2022. 1. 5. 20:41