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
- virtual inheritance
- dynamic_cast
- 더 지니어스 양면포커
- placement new
- vector capacity
- std::endl
- constructor
- c++ basic practice
- virtual function
- discord bot
- new&delete
- member function pointer
- conversion constructor
- C++
- operator overloading
- vector size
- std::cout
- std::ostream
- increment operator
- suffix return type
- c++ multi chatting room
- diamond inheritance
- virtual destructor
- pointer to member data
- std::vector
- return by reference
- this call
- base from member
- delete function
Archives
- Today
- Total
목록Vector (1)
I'm FanJae.
[C++] Vector I
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. - 배열의 단점은 크기를 변경할 수 없다는 것이다.- 크기를 변경하려면, 처음에 필요한 만큼의 메모리를 동적 할당해서 사용해야 한다. 1. 동적 배열(vector)의 구현- 메모리 동적 할당 기능을 활용해서, 크기 변경이 가능한 배열을 직접 생각해보자. 1-1. 기본적인 buffer의 생성 - 대략 이런식으로 할당을 한다고 생각하여, 코드를 작성하면 아래와 같다.#include int main(void){ int* buff = new int[5]; buff[0] = 1;} 1-2. 크기의 변동- 1은 넣은 뒤의 값은 이와 같을 것이다. 이제 이것의 '크기'를 변동한다고 생각해보는 것이다.- 사이즈를 10..
C++/Basic
2024. 8. 13. 18:07