Why are pointers to a reference illegal in C++?(为什么在 C++ 中指向引用的指针是非法的?)
问题描述
正如标题本身提到的 - 为什么指向引用的指针是非法的,而在 C++ 中相反是合法的?
As the title itself mentions - why are pointer to a reference illegal, while the reverse is legal in C++?
推荐答案
一个指针需要指向一个对象.引用不是对象.
A pointer needs to point to an object. A reference is not an object.
如果你有一个引用 r,一旦它被初始化,任何时候你使用 r 你实际上是在使用引用所引用的对象.
If you have a reference r, once it is initialized, any time you use r you are actually using the object to which the reference refers.
因此,您无法首先获取引用的地址以获取指向它的指针.考虑以下代码:
Because of this, you can't take the address of a reference to be able to get a pointer to it in the first place. Consider the following code:
int x;
int& rx = x;
int* px = ℞
在最后一行,&rx 取的是rx 引用的对象的地址,所以和你说的& 完全一样;x.
In the last line, &rx takes the address of the object referred to by rx, so it's exactly the same as if you had said &x.
这篇关于为什么在 C++ 中指向引用的指针是非法的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么在 C++ 中指向引用的指针是非法的?
基础教程推荐
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- CString 到 char* 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
