数组条目作为引用函数参数
可能是简单的问题,但我总是对引用和数组作为参数感到有点困惑。以下内容在 C++ 中有效吗?也就是说,如果代码片段完全编译的话,在调用 function1
后,array[0]
的值是否为 10
?
void function1(int &data)
{
data = 10;
}
void function2(void)
{
int array[2];
function1(array[0]);
}
感谢您的澄清。
Probably simple question, but I am always a little bit confused with references and arrays as arguments. Is the following valid in C++? That is, does array[0]
have the value 10
after call of function1
, if the snippet comiples at all?
void function1(int &data)
{
data = 10;
}
void function2(void)
{
int array[2];
function1(array[0]);
}
Thanks for clarification.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,它会的,这是完全有效的代码。
Yes, it will, and that's perfectly valid code.
是的。
是的。
尝试编译、运行和实验。然后问下一个稍微好一点的问题。
Yes.
Yes.
Try compiling, run and experiment. Then ask the next - and slightly better - question.