c – 通过const引用或值传递int,有什么区别?

前端之家收集整理的这篇文章主要介绍了c – 通过const引用或值传递int,有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Is it counter-productive to pass primitive types by reference? 7个
当我将诸如int和double之类的原语传递给函数时,最好是通过const引用或值传递它们(假设我不更改变量的值)?
int getValueFromArray(int index)
{
    // return the value from the array
}


int getValueFromArray(const int& index)
{
    // return the value from the array
}

谢谢

解决方法

对于基本类型,传递值比通过引用传递要好得多.不仅没有间接,而且通过引用,编译器必须担心潜在的混叠,这可能会破坏优化机会.

最后,pass-by-reference导致lvalues变得使用odr,这实际上可能导致链接错误.如果电话被内联,这个最后的问题不会消失.

原文链接:https://www.f2er.com/c/111106.html

猜你在找的C&C++相关文章