C++: difference between ampersand quot;amp;quot; and asterisk quot;*quot; in function/method declaration?(C++:与符号“amp;之间的区别和星号“*在函数/方法声明中?)
问题描述
它们之间是否存在某种细微差别:
Is there some kind of subtle difference between those:
void a1(float &b) {
b=1;
};
a1(b);
和
void a1(float *b) {
(*b)=1;
};
a1(&b);
?
他们都做同样的事情(或者从 main() 看来是这样),但第一个显然更短,但是我看到的大部分代码都使用第二个符号.有区别吗?也许以防万一它是某个对象而不是浮动?
They both do the same (or so it seems from main() ), but the first one is obviously shorter, however most of the code I see uses second notation. Is there a difference? Maybe in case it's some object instead of float?
推荐答案
两者的作用相同,但一个使用引用,一个使用指针.
Both do the same, but one uses references and one uses pointers.
在此处查看我的回答以获得全面的所有差异的列表.
这篇关于C++:与符号“&"之间的区别和星号“*"在函数/方法声明中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++:与符号“&"之间的区别和星号“*"在函数/方法声明中?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01