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
- std::vector
- dynamic_cast
- pointer to member data
- return by reference
- discord bot
- base from member
- constructor
- conversion constructor
- delete function
- diamond inheritance
- c++ basic practice
- member function pointer
- virtual function table
- this call
- 더 지니어스 양면포커
- std::cout
- virtual function
- new&delete
- increment operator
- std::ostream
- virtual destructor
- C++
- std::endl
- suffix return type
- virtual inheritance
- placement new
- c++ multi chatting room
- vector capacity
- operator overloading
- vector size
Archives
- Today
- Total
목록2024/08/19 (1)
I'm FanJae.
[C++] Copy Constructor
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. Copy Constructor- 자신과 동일한 타입 한개를 인자로 가지는 생성자class Point{ int x; int y;public: Point() : x{0}, y{0} {} // 1 Point(int a, int b) : x{a}, y{b} {} // 2};int main(){ Point p1; // ok. Point p2(1,2); // ok// Point p3(1); // error. Point(int) 필요 Point p4(p2); // ok. Point(Point)}- Point p4(p2);와 같은 생성자는 만든적이 없음에도 이상없이 잘 작동한다. ※ 복사 생성자를 만들..
C++/Basic
2024. 8. 19. 22:36