【C++】左值与右值

2024-06-06 18:48
文章标签 c++ 右值 左值

本文主要是介绍【C++】左值与右值,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. 左值与右值

到了代码的下一行,是否能通过单一变量访问到值。若访问不到,就是右值;否则就是左值。字面量一定是右值

#include <iostream>
using namespace std;#define func(x) __func(x, "func(" #x ")")void __func(int &x, const char *str) {cout << str << " is left value" << endl;return ;
}void __func(int &&x, const char *str) {cout << str << " is right value" << endl;return ;
}//之所以+重载不返回引用,而+=重载返回引用
//就是因为两个操作的结果值的类型不同
class A {
public ://因为+表达式的结果是右值A operator+(int x) {}// += 表达式的结果是左值A &operator+=(int x) {}
};int main() {func(1234);int x = 1234, y = 456;//到了下一行依然能通过x访问到x的值func(x);//x+y的结果是个临时匿名变量,所以到下一行的时候无法访问到该结果值,所以x+y返回值的类型是右值func(x + y);//x++值是x+1之前的值,到下一行无法通过x访问到x+1之前的值func(x++);//x+1以后的值,可以通过x访问到该值,所以++x的值是左值func(++x);//到了代码下一行无法通过单一变量访问到x+123的结果func(x + 123); //右值//到了代码下一行可以通过x访问到 x *= 2的结果func(x *= 2); //左func(y += 3); //左func(y * 3); //右return 0;
}

运行结果:
image-20210313160322553

2. 左值引用和右值引用

右值引用是绑定到右值上的引用,右值引用的定义形式是 int &&;左值引用的定义形式是int &

正确传递左值和右值的关系:

#include <iostream>
using namespace std;#define func(x) __func(x, "func(" #x ")")
#define func2(x) __func2(x, "func2(" #x ")")void __func2(int &x, const char *str) {cout << str << " is left value" << endl;return ;
}void __func2(int &&x, const char *str) {cout << str << " is right value" << endl;return ;
}void __func(int &x, const char *str) {cout << str << " is left value" << endl;func2(x);return ;
}
//int &&x是右值引用
void __func(int &&x, const char *str) {cout << str << " is right value" << endl;//func2(x); //x表现出的是左值特性//func2(move(x));//强制变成右值特性func2(forward<int &&>(x));//以右值引用的形式向下传递,x会保持右值引用的特性,可以理解为强制转换,但是比强制转换更强大,可以转换为某种类型的引用return ;
}//之所以+重载不返回引用,而+=重载返回引用
//就是因为两个操作的结果值的类型不同
class A {
public ://因为+表达式的结果是右值A operator+(int x) {}// += 表达式的结果是左值A &operator+=(int x) {}
};int main() {func(1234);int x = 1234, y = 456;//到了下一行依然能通过x访问到x的值func(x);//x+y的结果是个临时匿名变量,所以到下一行的时候无法访问到该结果值,所以x+y返回值的类型是右值func(x + y);//x++值是x+1之前的值,到下一行无法通过x访问到x+1之前的值func(x++);//x+1以后的值,可以通过x访问到该值,所以++x的值是左值func(++x);//到了代码下一行无法通过单一变量访问到x+123的结果func(x + 123); //右值//到了代码下一行可以通过x访问到 x *= 2的结果func(x *= 2); //左func(y += 3); //左func(y * 3); //右return 0;
}

运行结果:
image-20210313191612706
moveforward 函数为什么重要呢?本质原因是C++有重载,保证用正确的类型向下传递,保证可以调用到正确的函数重载形式。

forward 叫做 完美转发,比强制转换更厉害的是可以转换为某种类型的引用。

3. 引用绑定的顺序

#include <iostream>
using namespace std;void func1(int &x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}void func1(const int &x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}void func1(int &&x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}void func1(const int &&x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}int main() {int n;const int y = 123;func1(n); //func1(int &);func1(y); //func1(const int &)func1(123 + 456); //func1(int &&)return 0;
}

运行结果:
image-20210313200227802
const 类型的左值引用可以绑定所有数据类型:

#include <iostream>
using namespace std;/*void func1(int &x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}*/void func1(const int &x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}/*void func1(int &&x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}void func1(const int &&x) {cout << __PRETTY_FUNCTION__ << "called" << endl;
}*/int main() {int n;const int y = 123;func1(n); //func1(int &);func1(y); //func1(const int &)func1(123 + 456); //func1(int &&)return 0;
}

运行结果:
在这里插入图片描述
不能绑定到func(int &)是因为在func1(int &)中是可能修改该值的,常量值是不能绑定到int &的,但是func1(const int &)是不能修改的参数的,所以绑定到func1(const int &)是为了包含所有情况。绑定顺序就是优先绑定和自己类型匹配的引用,否则绑定到const类型的左值引用。

4. 移动构造

/*************************************************************************> File Name: move_ctor.cpp> Author: Maureen > Mail: Maureen@qq.com > Created Time: 二  1/11 16:17:49 2022************************************************************************/#include <iostream>
using namespace std;
//实现自己的vector
namespace maureen {
class vector {
public :vector(int n = 10) : __size(n), data(new int[n]) {cout << "default constructor" << endl;}vector(const vector &v) : __size(v.size()), data(new int[__size]) {cout << "deep copy constructor" << endl;for (int i = 0; i < size(); i++) ++data[i] = v[i];return ;}//合并两个动态数组vector operator+(const vector &v) {vector ret(v.size() + this->size());vector &now = *this;for (int i = 0; i < size(); i++) {ret[i] = now[i];}for (int i = size(); i< ret.size(); i++) {ret[i] = v[i - size()];}return ret;}int &operator[](int ind) const {return this->data[ind];}int size() const { return __size; }
private :int __size;int *data;
};
}//end of maureenostream &operator<<(ostream &out, const maureen::vector &v) {for (int i = 0; i < v.size(); i++) {out << v[i] << " ";}return out;
}int main() {maureen::vector v1, v2;for (int i = 0; i < v1.size(); i++) v1[i] = rand() % 100;for (int i = 0; i < v2.size(); i++) v2[i] = rand() % 100;maureen::vector v3(v1 + v2);cout << v1 << endl;cout << v2 << endl;cout << v3 << endl;return 0;
}

有返回值优化的运行结果:
image-20210313192938872
没有返回值优化的运行结果:
image-20210313194434931
maureen::vector v3(v1 + v2); 中的 v1+v2 会产生一个临时变量,但是却对这个临时变量做了拷贝,这没有必要,何不直接将临时变量的值拿过来。

所以就产生了一类特殊的构造函数: 移动构造

拷贝构造传入的是左值引用,所以在拷贝构造中,必须得做深拷贝;构造函数可以传左值引用,也可以传右值引用。

一旦调用了右值引用对象,说明传入的值是临时值,要不然不会绑定到右值引用上。这种情况下,就直接抢。这就是移动构造:

vector(vector &&v) : __size(v.size()), data(v.data) {v.data = nullptr; //因为有时候可能是在显式调用移动构造v.__size = 0;
}

移动构造就是传入右值引用的构造。

#include <iostream>
using namespace std;
//实现自己的vector
namespace maureen {
class vector {
public :vector(int n = 10) : __size(n), data(new int[n]) {cout << "default constructor" << endl;}vector(const vector &v) : __size(v.size()), data(new int[__size]) { //拷贝构造cout << "deep copy constructor" << endl;for (int i = 0; i < size(); i++) ++data[i] = v[i];return ;}vector(vector &&v) : __size(v.size()), data(v.data) { //移动构造cout << "move copy constructor" << endl;v.data = nullptr;v.__size = 0;}vector operator+(const vector &v) { //合并两个动态数组vector ret(v.size() + this->size());vector &now = *this;for (int i = 0; i < size(); i++) {ret[i] = now[i];}for (int i = size(); i< ret.size(); i++) {ret[i] = v[i - size()];}return ret;}int &operator[](int ind) const {return this->data[ind];}int size() const { return __size; }~vector() {if (data) delete[] data;data = nullptr;__size = 0;}
private :int __size;int *data;
};
}//end of maureenostream &operator<<(ostream &out, const maureen::vector &v) {for (int i = 0; i < v.size(); i++) {out << v[i] << " ";}return out;
}int main() {maureen::vector v1, v2;for (int i = 0; i < v1.size(); i++) v1[i] = rand() % 100;for (int i = 0; i < v2.size(); i++) v2[i] = rand() % 100;maureen::vector v3(v1 + v2);cout << v1 << endl;cout << v2 << endl;cout << v3 << endl;return 0;
}

去掉返回值优化后的结果:
image-20210313194740273
移动构造只是改变了指针的指向,而拷贝构造需要先创建一片存储区再将数据拷贝过来。

发现当前值是临时值的时候,就将它的资源抢过来。

C++因为引入左值引用和右值引用,重回巅峰。因为在有移动构造之前,STL效率不高,因为只要产生拷贝就是深拷贝,如 string,vector。

当拷贝构造是深拷贝时,就一定要配一个移动构造。

显式调用移动构造函数:

#include <iostream>
using namespace std;
//实现自己的vector
namespace maureen {
class vector {
public :vector(int n = 10) : __size(n), data(new int[n]) {cout << "default constructor" << endl;}vector(const vector &v) : __size(v.size()), data(new int[__size]) {cout << "deep copy constructor" << endl;for (int i = 0; i < size(); i++) ++data[i] = v[i];return ;}vector(vector &&v) : __size(v.size()), data(v.data) {cout << "move copy constructor" << endl;v.data = nullptr;v.__size = 0;}vector operator+(const vector &v) { //合并两个动态数组vector ret(v.size() + this->size());vector &now = *this;for (int i = 0; i < size(); i++) {ret[i] = now[i];}for (int i = size(); i< ret.size(); i++) {ret[i] = v[i - size()];}return ret;}int &operator[](int ind) const {return this->data[ind];}int size() const { return __size; }~vector() {if (data) delete[] data;data = nullptr;__size = 0;}
private :int __size;int *data;
};
}//end of maureenostream &operator<<(ostream &out, const maureen::vector &v) {for (int i = 0; i < v.size(); i++) {out << v[i] << " ";}return out;
}
int main() {maureen::vector v1, v2;for (int i = 0; i < v1.size(); i++) v1[i] = rand() % 100;for (int i = 0; i < v2.size(); i++) v2[i] = rand() % 100;maureen::vector v3(v1 + v2);cout << v1 << endl;cout << v2 << endl;cout << v3 << endl;maureen::vector v4(move(v1));//显式调用移动构造cout << v1 << endl;cout << v4 << endl;return 0;
}

去掉返回值优化的运行结果:
image-20210313194908978

这篇关于【C++】左值与右值的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1036934

相关文章

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

C++包装器

包装器 在 C++ 中,“包装器”通常指的是一种设计模式或编程技巧,用于封装其他代码或对象,使其更易于使用、管理或扩展。包装器的概念在编程中非常普遍,可以用于函数、类、库等多个方面。下面是几个常见的 “包装器” 类型: 1. 函数包装器 函数包装器用于封装一个或多个函数,使其接口更统一或更便于调用。例如,std::function 是一个通用的函数包装器,它可以存储任意可调用对象(函数、函数

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)

【C++高阶】C++类型转换全攻略:深入理解并高效应用

📝个人主页🌹:Eternity._ ⏩收录专栏⏪:C++ “ 登神长阶 ” 🤡往期回顾🤡:C++ 智能指针 🌹🌹期待您的关注 🌹🌹 ❀C++的类型转换 📒1. C语言中的类型转换📚2. C++强制类型转换⛰️static_cast🌞reinterpret_cast⭐const_cast🍁dynamic_cast 📜3. C++强制类型转换的原因📝

C++——stack、queue的实现及deque的介绍

目录 1.stack与queue的实现 1.1stack的实现  1.2 queue的实现 2.重温vector、list、stack、queue的介绍 2.1 STL标准库中stack和queue的底层结构  3.deque的简单介绍 3.1为什么选择deque作为stack和queue的底层默认容器  3.2 STL中对stack与queue的模拟实现 ①stack模拟实现

c++的初始化列表与const成员

初始化列表与const成员 const成员 使用const修饰的类、结构、联合的成员变量,在类对象创建完成前一定要初始化。 不能在构造函数中初始化const成员,因为执行构造函数时,类对象已经创建完成,只有类对象创建完成才能调用成员函数,构造函数虽然特殊但也是成员函数。 在定义const成员时进行初始化,该语法只有在C11语法标准下才支持。 初始化列表 在构造函数小括号后面,主要用于给

2024/9/8 c++ smart

1.通过自己编写的class来实现unique_ptr指针的功能 #include <iostream> using namespace std; template<class T> class unique_ptr { public:         //无参构造函数         unique_ptr();         //有参构造函数         unique_ptr(