深入学习c++--左值引用和右值引用

Posted douzujun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了深入学习c++--左值引用和右值引用相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <string>
#include <vector>
using namespace std;

int main()
{
    int t = 10;                         //t: 左值 
    int t2 = t + 1;                     //t: 右值 
    
    int a = 1;                          
    const int &b = a + 1;               // 左值引用 
//    int &b = a + 1;                     // 错误 
    cout << b  << " " << a << endl;
    
    int c = 1;
    int &&c2 = c + 1;                   // 右值引用 
    cout << c2 << " " << c << endl;
    
    int d = 1;
    int &&dd = std::move(d);            // 直接把 左值或者右值 转换成 右值引用
    cout << dd << " " << endl;          // 注意,在调用完std::move之后,不能再使用d, 只能用dd
    
    string s = "hello";
    vector<string> v ;
    v.push_back(std::move(s));          // 调用移动构造函数,掏空 s, 掏空后,最好不要使用s了 !!
    cout << v.front() << endl;
    cout << "s: " << s << endl; 
    
    
    return 0;
}

技术图片

参考:https://www.cnblogs.com/cly-blog/p/5980546.html

以上是关于深入学习c++--左值引用和右值引用的主要内容,如果未能解决你的问题,请参考以下文章

[C++11]右值和右值引用

C++11 中的左值引用和右值引用的区别

左值和右值的区别

c++中的左值和右值,右值引用到底是啥?关于引用这一节看得很迷糊。

C++11——右值引用

C++内功修炼干货,进大厂必须会的C++左值与右值,最适合小白看的文章!