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
- conversion constructor
- c++ multi chatting room
- suffix return type
- std::cout
- discord bot
- dynamic_cast
- pointer to member data
- vector size
- return by reference
- C++
- 더 지니어스 양면포커
- virtual destructor
- virtual function table
- base from member
- member function pointer
- std::endl
- constructor
- new&delete
- virtual inheritance
- this call
- operator overloading
- diamond inheritance
- std::vector
- increment operator
- std::ostream
- virtual function
- c++ basic practice
- vector capacity
- delete function
- placement new
Archives
- Today
- Total
목록return by reference (1)
I'm FanJae.
[C++] this, Reference return
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. 객체를 어떻게 구분하는가?#include class Point{ int x{0}; int y{0};public: void set(int a, int b) { x = a; y = b; }};int main(){ Point pt1; Point pt2; pt1.set(10, 20); pt2.set(10, 20);}- 위와 같은 예제가 있다고 생각할때, 우리가 이와 같은 의문을 가질 수 있다.- 멤버 데이터는 분명히 객체당 한 개씩 생성되고, 멤버 함수 또한 코드 메모리에 한 개만 만들어진다.- 이는 객체가 여러 개 생성되도 그러하다. 대체 어떤 객체인지 어떻게 구분하는 것일까?void set(int a, int b){..
C++/Basic
2024. 8. 18. 20:48