반응형
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
- Medium
- 배열
- sql
- javascript
- OS
- 프로그래머스
- 동적계획법
- CS
- VUE
- Doitvue.js입문
- 카카오
- LeetCode
- typescript
- Level2
- 자바스크립트
- 고득점Kit
- 코테연습
- Level1
- Level3
- python
- 리트코드
- dp
- web
- 파이썬
- 백준
- 프로그래밍
- 웹프로그래밍
- 리액트
- C++
- react
Archives
- Today
- Total
[c++] reference (참조) 본문
반응형
별도의 메모리 할당 없이 주소만 참조
short s = 5;
short& rs = s; // 레퍼런스
short* ps = &s; //포인터
cout << s << " " << &s << endl;
cout << rs << " " << &rs << endl;
cout << *ps << " " << &ps << endl;
*결과*
5 00B7F890
5 00B7F890
5 00B7F878
-
참조 초기화 , 대입
int a = 1; int b = 2; int& c = a; // 초기화 c = 3; c = b; // b의 값을 대입 (참조하는 게 아님) c = 4; cout << c << endl; // 4 cout << a << endl; // 4
-
const
int a = 1 const int& c = a; cout << c << endl; a = 5; cout << c << endl;
* const 변수는 상수를 참조할 수 있음
const int& ra = 9; //가능
int& rb = 9;//error
반응형
'객체지향프로그래밍 (C++)' 카테고리의 다른 글
[c++] dynamic memory allocation (동적 메모리 할당) ② (0) | 2020.07.06 |
---|---|
[c++] dynamic memory allocation (동적 메모리 할당) (0) | 2020.07.03 |
[c++] lamda function (람다 함수) (0) | 2020.07.03 |
[c++] function(함수) (0) | 2020.07.02 |
[c++] enumeration (열거체) (0) | 2020.07.02 |
Comments