dereferencing a pointer when passing by reference(通过引用传递时取消引用指针)
问题描述
通过引用传递给函数时取消引用指针会发生什么?
what happens when you dereference a pointer when passing by reference to a function?
这是一个简单的例子
int& returnSame( int &example ) { return example; }
int main()
{
int inum = 3;
int *pinum = & inum;
std::cout << "inum: " << returnSame(*pinum) << std::endl;
return 0;
}
是否产生了临时对象?
推荐答案
取消引用指针不会创建副本;它创建一个 lvalue 指向指针的目标.这可以绑定到 lvalue 引用参数,因此函数接收对指针指向的对象的引用,并返回对相同对象的引用.这种行为是明确定义的,不涉及临时对象.
Dereferencing the pointer doesn't create a copy; it creates an lvalue that refers to the pointer's target. This can be bound to the lvalue reference argument, and so the function receives a reference to the object that the pointer points to, and returns a reference to the same. This behaviour is well-defined, and no temporary object is involved.
如果它按值获取参数,那么这将创建一个本地副本,并返回对该副本的引用会很糟糕,如果访问它会产生未定义的行为.
If it took the argument by value, then that would create a local copy, and returning a reference to that would be bad, giving undefined behaviour if it were accessed.
这篇关于通过引用传递时取消引用指针的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过引用传递时取消引用指针
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07