参见英文答案 >
Is it counter-productive to pass primitive types by reference? 7个
当我将诸如int和double之类的原语传递给函数时,最好是通过const引用或值传递它们(假设我不更改变量的值)?
当我将诸如int和double之类的原语传递给函数时,最好是通过const引用或值传递它们(假设我不更改变量的值)?
int getValueFromArray(int index) { // return the value from the array } int getValueFromArray(const int& index) { // return the value from the array }
谢谢