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
- virtual function table
- std::endl
- std::ostream
- pointer to member data
- 더 지니어스 양면포커
- operator overloading
- delete function
- c++ multi chatting room
- new&delete
- vector size
- std::cout
- this call
- diamond inheritance
- member function pointer
- suffix return type
- C++
- vector capacity
- base from member
- virtual function
- discord bot
- virtual inheritance
- increment operator
- dynamic_cast
- return by reference
- c++ basic practice
- std::vector
- constructor
- placement new
- conversion constructor
- virtual destructor
Archives
- Today
- Total
목록ranges (1)
I'm FanJae.
[C++] Iterator
1.반복자(iterator)#include #include int main(){ int x[5] = {1,2,3,4,5}; int* p1 = x; ++p1; std::cout - 배열은 연속된 메모리이다.- 1번째 요소의 주소를 담은 포인터 변수만 있으면, ++, * 연산으로 모든 요소에 접근할 수 있다.- 반면 일반적인 list는 연속된 메모리가 아니므로 ++연산등을 통한 요소 접근은 불가능하다.- 그러나, std::list는 연속된 메모리가 아니지만, 반복자(iterator)만 있으면 ++, * 연산으로 모든 요소에 접근이 가능하다.- p2 자체가 포인터는 아니다.- 내부적으로 포인터 멤버 데이터가 있고, operator++, operator* 연산자를 재정의해 포인터처럼..
C++/Basic
2024. 8. 28. 13:31