当前位置:   article > 正文

引用实战学习

引用实战学习

1.引用

2.左右值

3.左值引用

4.右值引用

5.应用

#include <iostream>

using namespace std;

/*
 * 1.引用
 * 2.左右值
 * 3.左值引用
 * 4.右值引用
 * 5.应用
 * */

int add(int a,int b){
    return a+b;
}

int add2(int &a ,int &b){
    return a+b;
}

int add3(int && a,int &b){
    return a+b;
}

int add4(int && a,int && b){
    return a+b;
}

int main(){
    int a = 1;
    int &b = a;
    cout << a << "="<<b << endl;

    cout << "c是左值"<<"10是右值"<<endl;
    int c = 10;
    int d = 10+2;
    int e = 5;
    int f = e;//f,e都是左值
    const int &g = 6; //左值引用接受右值
    const int &h = c;//左值引用接收左值

    int && score = 15; //右值引用

    int num1 = 10;
    int num2 = 20;
    add(num1,num2);
    add2(num1,num2);
    add3(10,num2);
    add4(10,20);
    return 0;

}

  • 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
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/614734
推荐阅读
相关标签
  

闽ICP备14008679号