C++ non-const lvalue reference cannot bind to…
2020-03-09 16:00:34来源:博客园 阅读 ()
C++ non-const lvalue reference cannot bind to a temporary
1. 问题代码
#include <iostream>
#include <vector>
//注意begin和end形参都声明为引用
bool find_int(std::vector<int>::iterator &begin, std::vector<int>::iterator &end, int v){
while(begin != end){
if(*begin == v)
return true;
begin++;
}
return false;
}
int main(){
std::vector<int> a(3, 100);
//a.begin()和a.end()的返回值作为实参传入find_int中
std::cout << find_int(a.begin(), a.end(), 100) << std::endl;
}
2. 编译错误
g++ -Wall -std=c++11 -o hello hello.cpp
3. 原因分析
non-const lvalue reference cannot bind to a temporary
根据编译错误提示可以知道,不能将形参begin、end绑定到a.begin()和a.end()的返回值,因为该返回值是一个临时量,临时量的生命周期可能在a.begin()和a.end()执行完后就结束了。因此编译器认为普通引用绑定一个临时量,在find_int函数中可能会修改这个临时量,然而此时临时量可能已经被销毁,从而导致一些未定义的行为,因此编译器不允许将普通引用绑定到一个临时量上。
4. 解决方案
将普通引用改为常量引用(PS:改为常量引用后不能修改绑定的对象,只能读不能写)
bool find_int(const std::vector<int>::iterator &begin, const std::vector<int>::iterator &end, int v)
修改函数的形参声明,将引用改成普通变量
bool find_int(std::vector<int>::iterator begin, std::vector<int>::iterator end, int v)
用变量存储a.begin()和a.end()的返回值
std::vector<int>::iterator begin = a.begin(); std::vector<int>::iterator end = a.end(); std::cout << find_int(begin, end, 100) << std::endl;
5. Tips
- 为什么方案一可行呢?通过常量引用绑定临时量,临时量就不会销毁了吗?
- C++标准:assigning a temporary object to the const reference extends the lifetime of this object to the lifetime of the const reference.
- 常量引用会延长临时量的生命周期
- 普通引用只能绑定和引用类型相同的左值(PS:函数的返回值不是左值,因为无法对其进行赋值)
- 常量引用可以绑定临时量、常量或者可转换为引用类型的变量
6. 参考资料
- 常量引用绑定临时量
- C++ primer 第五版-P55
原文链接:https://www.cnblogs.com/wengle520/p/12449931.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:关于有趣的windows.h
下一篇:洛谷P1034 矩形覆盖
- C++ 转换函数搭配友元函数 2020-06-10
- C++ 自动转换和强制类型转换(用户自定义类类型) 2020-06-10
- C++ rand函数 2020-06-10
- C++ 友元函数 2020-06-10
- C++ 运算符重载 2020-06-10
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash