티스토리 뷰
r-value 참조는 자기 자신 아니면 이 값을 참조할 수 없다는 느낌이다.
#include<iostream>
using namespace std;
void doSomething(int &ref)
{
cout << "L-Value" << endl;
}
void doSomething(int &&ref)
{
cout << "R-Value" << endl;
}
int getResult()
{
return 100 * 100;
}
int main()
{
int x = 5;
int y = getResult();
const int cx = 6;
const int cy = getResult();
// L-value references
int &lr1 = x; // Modifiable l-value
// int &lr2 = cx; // Non-Modifiable l-value -> error
// int &lr3 = 5; // R-value -> error
const int &lr4 = x;
const int &lr5 = cx;
const int &lr6 = 5;
// R-value references
// int &&rr1 = x;
// int &&rr2 = cx;
int &&rr3 = 5;
// const int &rr4 = x;
// const int &rr5 = cx;
const int &rr6 = 5;
doSomething(x);
doSomething(5);
doSomething(getResult());
}
L-Value
R-Value
R-Value
'언어 > C++' 카테고리의 다른 글
16.1 / 16.2 표준 템플릿 라이브러리, 컨테이너, 반복자 소개 (0) | 2020.05.23 |
---|---|
15.5 / 15.6 / 15.7 (0) | 2020.05.23 |
14.5 함수try / 14.6 예외처리의 위험성과 단점 (0) | 2020.05.15 |
14.4 std::exception 소개 (0) | 2020.05.13 |
14.2 예외처리와 스택 되감기 (0) | 2020.05.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 시간복잡도
- 비트필드
- 간접 지정
- 프로그래밍
- codeit
- 포인터
- 3차원 배열
- Algorithm
- 다차원 배열
- 파이썬
- 형승격
- 회전리스트
- 강의
- 공간복잡도
- 종류
- C
- timecomplexity
- 직접 지정
- 공용체
- 구조체
- 2차원 배열
- call by value
- 공부
- 알고리즘
- 자료구조
- inflearn
- 배열
- 1차원 배열
- call by reference
- 재귀함수
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함