I was reading my C++ book (Deitel) when I came across a function to calculate the volume of a cube. The code is the following:
double cube (const double side){
return side * side * side;
}
The explanation for using the "const" qualifier was this one: "The const qualified should be used to enforce the principle of least privilege, telling the compiler that the function does not modify variable side".
My question: isn't the use of "const" redundant/unnecessary here since the variable is being passed by value, so the function can't modify it anyway?

consthere is that you cannot modifysideparameter insidecube()method to avoid unexpected behavior. – Tomasz Nurkiewicz Jan 3 '12 at 15:09constis redundant and isn't part of the function's signature. That means you can leave it off in the function declaration without changing anything. You can also remove it later if for some reason you want to make your code less maintainable, and it won't affect the calling code. – Matthew Crumley Jan 3 '12 at 16:37constvisible in the declaration, where it's not meaningful, or (b) make the declaration and definition inconsistent. I suppose the solution is to get over my qualms about (b). – Keith Thompson Jan 3 '12 at 18:15finalkeyword in the same location is required for closures to work correctly when declaring an anonymous class inside the function. Might it be the same for C++? – Izkata Jan 3 '12 at 20:33