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
- new&delete
- virtual inheritance
- c++ basic practice
- vector size
- std::cout
- delete function
- increment operator
- std::ostream
- member function pointer
- operator overloading
- pointer to member data
- vector capacity
- 더 지니어스 양면포커
- constructor
- conversion constructor
- virtual function table
- this call
- C++
- placement new
- base from member
- std::vector
- return by reference
- std::endl
- diamond inheritance
- c++ multi chatting room
- discord bot
- suffix return type
- virtual destructor
- virtual function
- dynamic_cast
Archives
- Today
- Total
목록const reference (1)
I'm FanJae.
[C++] Reference
※ 본 포스트는 코드누리 C++ Basic 강의 내용을 보고 정리한 포스트입니다. 1. Reference(참조) 1-1. Reference의 정의#include int main(){ int n = 10; int* p = &n; int& r = n; r = 20; std::cout - C 언어에서는 변수의 주소값을 담을 수 있는 Pointer라는 것이 있다.- C++에서는 포인터와 유사한 형태의 Reference라는 기능이 존재한다. (유사한 것이 결코 같은게 아니다.)- 포인터 변수를 선언하는 것처럼 다음과 같이 선언이 가능하다.int &r = n; - Reference란, 이미 존재하는 변수(메모리)에 대한 추가적인 별칭을 부여하는 문법이다.- 기존 포..
C++/Basic
2024. 8. 9. 13:55