I'm trying to understand if there is any benefit to returning a const reference. I have a factorial function that normally looks like this:
unsigned long factorial(unsigned long n)
{
return (n == 0) ? 1 : n * factorial(n - 1);
}
I'm assuming that there will be a performance increase when we pass by const reference and we return a const reference... but const-correctness always confuses me.
const unsigned long & factorial(const unsigned long& n)
{
return (n == 0) ? 1 : n * factorial(n - 1);
}
Is it valid to return a const reference? Furthermore, could somebody please tell me: is it beneficial?
longby const reference would be beneficial to passing it by value. In general, this is implementation-specific, but on all architectures I can think of, either bothlongandlong&will be represented as 32-bit quantities, or both will be 64-bit. So you copy the same amount of data, but now the caller has to compute the address (which means that it also has to have a local, and not just keep in in the register), and the callee has to dereference. At best, the function would get inlined, and the optimizer would drop the reference. – Pavel Minaev Jul 9 '10 at 22:41constis dropped altogether from arguments on function signatures, and will remain but make no difference forlongin return type (though it might make a difference for class types). – Pavel Minaev Jul 9 '10 at 22:45