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
- std::vector
- std::endl
- std::cout
- vector size
- 더 지니어스 양면포커
- virtual inheritance
- virtual function
- conversion constructor
- base from member
- vector capacity
- c++ basic practice
- virtual destructor
- new&delete
- C++
- pointer to member data
- operator overloading
- constructor
- delete function
- std::ostream
- placement new
- return by reference
- virtual function table
- this call
- member function pointer
- c++ multi chatting room
- suffix return type
- increment operator
- dynamic_cast
- diamond inheritance
- discord bot
Archives
- Today
- Total
목록new&delete (1)
I'm FanJae.
[C++ Intermediate] new/delete, placement new
1. new와 delete 1-1. new와 delete의 원리#include class Point{ int x, y;public: Point(int a, int b) : x{a}, y{b} { std::cout Point* p1 = new Point(1,2);- 위와 같이 쓰면 크게 2가지 작업을 진행한다. 즉, new를 실행하면 아래와 같은 2가지가 실행되는 것이다. ① 메모리할당 void *p = operator new(sizeof(Point))② 생성자호출 Point *p1 = new(p) Point(1,2);- 여기서 new(p) Point(1,2); 와 같은 표기법을 placement new라고 한다. delete p1;- 위와 같이 쓰면 크게 2가지 작업을 진행한다. 즉, delet..
C++/Intermediate
2024. 9. 18. 21:36