const 引用可以分配一个 int 吗?

2023-12-03C/C++开发问题
1

本文介绍了const 引用可以分配一个 int 吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我遇到了一个代码片段

const int& reference_to_const_int = 20;
cout<<"
  reference_to_const_int = "<<reference_to_const_int<<endl;     

此代码编译 &执行输出:-

This code compiles & executes with output :-

reference_to_const_int = 20

这对我来说很奇怪.据我所知参考不占用内存 &它们是其他变量的别名.因此我们不能说

This is something strange in for me. As I know reference do not occupy memory & they are aliases to other variables. hence we cannot say

int& reference_to_int = 30;

以上语句不能编译给出错误:-

The above statement shall not compile giving error :-

 error: invalid initialization of non-const reference of type ‘int&’ from an rvalue of type ‘int’

const int&"究竟发生了什么案件?需要完整的解释.

What exactly is happening in the "const int&" case? A full explanation is desired.

请帮忙.

谢谢

推荐答案

创建了一个临时对象,将 const 引用绑定到它是合法的,但将它绑定到非 const 引用是非法的code>const 一.

A temporary is created, and it's legal to bind a const reference to it, but illegal to bind it to a non-const one.

就像:

const int& reference_to_const_int = int(20);  //LEGAL
      int& reference_to_const_int = int(20);  //ILLEGAL

const 引用延长了临时文件的生命周期,这就是它起作用的原因.这只是语言的规则.

A const reference extends the life of a temporary, that's why this works. It's just a rule of the language.

这篇关于const 引用可以分配一个 int 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&amp;()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6