指针和引用之间的低级区别是什么?

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

本文介绍了指针和引用之间的低级区别是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

如果我们有这个代码:

int foo=100;
int& reference = foo;
int* pointer = &reference;

引用的数据和指针的数据没有实际的二进制差异.(它们都包含 foo 在内存中的位置)

There's no actual binary difference in the reference's data and the pointer's data. (they both contain the location in memory of foo)

第 2 部分

那么指针和引用之间的所有其他差异在哪里(在这里讨论)进来?编译器是否强制执行它们,或者它们实际上是汇编级别上的不同类型的变量?换句话说,以下是否产生相同的汇编语言?

So where do all the other differences between pointers and references (discussed here) come in? Does the compiler enforce them or are they actually different types of variables on the assemebly level? In other words, do the following produce the same assembly language?

foo=100;
int& reference=foo;
reference=5;

foo=100;
int* pointer=&foo;
*pointer=5;

推荐答案

理论上,它们可以以不同的方式实现.

Theoretically, they could be implemented in different ways.

实际上,我见过的每个编译器都编译指向相同机器代码的指针和引用.区别完全在于语言层面.

In practice, every compiler I've seen compiles pointers and references to the same machine code. The distinction is entirely at the language level.

但是,就像 cdiggins 所说的那样,您不应该依赖这种概括,直到您验证它对您的编译器和平台来说是正确的.

But, like cdiggins says, you shouldn't depend on that generalization until you've verified it's true for your compiler and platform.

这篇关于指针和引用之间的低级区别是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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