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 |
Tags
- return by reference
- dynamic_cast
- operator overloading
- virtual function
- std::endl
- pointer to member data
- vector size
- delete function
- discord bot
- new&delete
- virtual destructor
- c++ basic practice
- suffix return type
- base from member
- member function pointer
- std::ostream
- constructor
- vector capacity
- placement new
- virtual function table
- std::cout
- diamond inheritance
- C++
- conversion constructor
- this call
- increment operator
- c++ multi chatting room
- 더 지니어스 양면포커
- virtual inheritance
- std::vector
Archives
- Today
- Total
목록nullptr (1)
I'm FanJae.
[C++] nullptr
1. nullptr- '0'은 원래 정수(int)형 literal(리터럴)이다.- 이는 포인터 변수 초기화에 사용될 수 있다.- 0이 아닌 다른 정수형 literal은 포인터로 암시적 변환이 될 수 없다.- 0을 가진 정수형 변수도 포인터로 암시적 형변환이 될 수 없다. int n1 = 0;int* p1 = 0;int* p2 = n1; // error nullptr // C++11- null pointer를 나타내는 literal- 모든 종류(타입)의 포인터 변수를 초기화 하는데 사용 가능- 정수(실수) 초기화에 사용될 수는 없다.int* p4 = nullptr;int n2 = nullptr; // error 1-1. nullptr의 등장배경- 컴파일러마다 조금 차이는 있지만, 일반적으로 C와 C++..
C++/Basic
2024. 8. 11. 00:47